We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac22e02 commit 88634a9Copy full SHA for 88634a9
2 files changed
firmware/chipignite/current/src/current.c
@@ -88,8 +88,7 @@ void configure_io() {
88
89
// Initiate the serial transfer to configure IO
90
reg_mprj_xfer = 1;
91
- while (reg_mprj_xfer == 1)
92
- ;
+ while (reg_mprj_xfer == 1);
93
}
94
95
/** @brief Delay in microseconds
firmware/chipignite/polysat/src/polysat.c
@@ -166,6 +166,9 @@ void main() {
166
167
pulse = !pulse;
168
169
+ // Send a heartbeat packet to the host
170
+ slip_send_heartbeat(uart_write);
171
+
172
// For every non-zero element in the array, set back to zero and send a packet to the host
173
for (uint32_t i = 0; i < (uint32_t)(sizeof(zero_array) / sizeof(*zero_array)); i++) {
174
if (zero_array[i] != 0) {
0 commit comments