예제 #1
0
void print_out_spikes (void)
{
  printf ("out_spikes:\n");
  
  if (nonempty_out_spikes()) {
    printf ("-----------\n");
    print_bit_field (out_spikes, out_spikes_size);
    printf ("-----------\n");
  }
}
예제 #2
0
//! \brief print out the contents of the output spikes (in DEBUG only)
void out_spikes_print() {
#if LOG_LEVEL >= LOG_DEBUG
    log_debug("out_spikes:\n");

    if (!out_spikes_is_empty()) {
        log_debug("-----------\n");
        print_bit_field(out_spikes, out_spikes_size);
        log_debug("-----------\n");
    }
#endif // LOG_LEVEL >= LOG_DEBUG
}