Skip to content

Commit 9ea55c0

Browse files
committed
Use the other way of sending packets
1 parent 1e29755 commit 9ea55c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

neural_modelling/src/neuron/synapse_filter.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include <circular_buffer.h>
2424
#include <wfi.h>
2525
#include "population_table/population_table.h"
26+
#include "send_spike.h"
2627

2728
enum {
2829

@@ -195,7 +196,7 @@ static inline void process_spike(uint32_t spike) {
195196
if (accepted(app_id, spike)) {
196197
prov.n_spikes_forwarded += 1;
197198
uint32_t key = get_key();
198-
spin1_send_mc_packet(key, spike, WITH_PAYLOAD);
199+
send_spike_mc_payload(key, spike);
199200
}
200201
}
201202

0 commit comments

Comments
 (0)