-
Notifications
You must be signed in to change notification settings - Fork 96
/
commands.c
816 lines (668 loc) · 20.8 KB
/
commands.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
/*
Copyright 2019 - 2021 Benjamin Vedder [email protected]
This file is part of the VESC BMS firmware.
The VESC BMS firmware is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The VESC BMS firmware is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "commands.h"
#include "bms_if.h"
#include "buffer.h"
#include "main.h"
#include "comm_can.h"
#include "mempools.h"
#include "confparser.h"
#include "packet.h"
#include "terminal.h"
#include "confxml.h"
#include "flash_helper.h"
#include "timeout.h"
#include "sleep.h"
#include "utils.h"
#if HAS_BLACKMAGIC
#include "bm_if.h"
#endif
#include "minilzo.h"
#include "selftest.h"
#include <math.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
// Private variables
static uint8_t send_buffer_global[PACKET_MAX_PL_LEN];
static mutex_t send_buffer_mutex;
static mutex_t print_mutex;
static mutex_t terminal_mutex;
static uint8_t blocking_thread_cmd_buffer[PACKET_MAX_PL_LEN];
static volatile unsigned int blocking_thread_cmd_len = 0;
static volatile bool is_blocking = false;
// Threads
static THD_FUNCTION(blocking_thread, arg);
static THD_WORKING_AREA(blocking_thread_wa, 2048);
static thread_t *blocking_tp;
// Function pointers
static void(* volatile send_func)(unsigned char *data, unsigned int len) = 0;
static void(* volatile send_func_blocking)(unsigned char *data, unsigned int len) = 0;
static void(* volatile appdata_func)(unsigned char *data, unsigned int len) = 0;
void commands_init(void) {
chMtxObjectInit(&send_buffer_mutex);
chMtxObjectInit(&print_mutex);
chMtxObjectInit(&terminal_mutex);
chThdCreateStatic(blocking_thread_wa, sizeof(blocking_thread_wa), NORMALPRIO, blocking_thread, NULL);
}
static void reply_func_dummy(unsigned char *data, unsigned int len) {
(void)data; (void)len;
}
void commands_process_packet(unsigned char *data, unsigned int len,
void(*reply_func)(unsigned char *data, unsigned int len)) {
if (len < 1) {
return;
}
if (reply_func == 0) {
reply_func = reply_func_dummy;
}
send_func = reply_func;
COMM_PACKET_ID packet_id = data[0];
data++;
len--;
sleep_reset();
switch (packet_id) {
case COMM_FW_VERSION: {
int32_t ind = 0;
uint8_t send_buffer[50];
uint8_t num_name_chars;
send_buffer[ind++] = COMM_FW_VERSION;
send_buffer[ind++] = FW_VERSION_MAJOR;
send_buffer[ind++] = FW_VERSION_MINOR;
num_name_chars = strlen(HW_NAME);
if (num_name_chars >= HW_NAME_MAX_CHARS) {
num_name_chars = HW_NAME_MAX_CHARS;
}
strncpy((char*)(send_buffer + ind), HW_NAME, num_name_chars);
ind += num_name_chars;
#ifdef HW_REV_CHAR
if (num_name_chars <= (HW_NAME_MAX_CHARS - 2)) {
send_buffer[ind++] = '_';
send_buffer[ind++] = HW_REV_CHAR;
}
#endif
send_buffer[ind++] = '\0';
memcpy(send_buffer + ind, STM32_UUID_8, 12);
ind += 12;
send_buffer[ind++] = 0;
send_buffer[ind++] = FW_TEST_VERSION_NUMBER;
send_buffer[ind++] = HW_TYPE_VESC_BMS;
send_buffer[ind++] = 1; // One custom config
reply_func(send_buffer, ind);
} break;
case COMM_JUMP_TO_BOOTLOADER_ALL_CAN_HW:
data[-1] = COMM_JUMP_TO_BOOTLOADER_HW;
comm_can_send_buffer(255, data - 1, len + 1, 2);
chThdSleepMilliseconds(100);
/* Falls through. */
/* no break */
case COMM_JUMP_TO_BOOTLOADER_HW: {
int32_t ind = 0;
HW_TYPE hw = data[ind++];
char *hw_name = (char*)data + ind;
ind += strlen(hw_name) + 1;
if (hw != HW_TYPE_VESC_BMS || strcmp(hw_name, HW_NAME) != 0) {
break;
}
data += ind;
len -= ind;
}
/* Falls through. */
/* no break */
case COMM_JUMP_TO_BOOTLOADER:
flash_helper_jump_to_bootloader();
break;
case COMM_ERASE_NEW_APP_ALL_CAN_HW:
data[-1] = COMM_ERASE_NEW_APP_HW;
comm_can_send_buffer(255, data - 1, len + 1, 2);
chThdSleepMilliseconds(1500);
/* Falls through. */
/* no break */
case COMM_ERASE_NEW_APP_HW: {
int32_t ind = 0;
HW_TYPE hw = data[ind++];
char *hw_name = (char*)data + ind;
ind += strlen(hw_name) + 1;
if (hw != HW_TYPE_VESC_BMS || strcmp(hw_name, HW_NAME) != 0) {
break;
}
data += ind;
len -= ind;
}
/* Falls through. */
/* no break */
case COMM_ERASE_NEW_APP: {
int32_t ind = 0;
uint16_t flash_res = flash_helper_erase_new_app(buffer_get_uint32(data, &ind));
ind = 0;
uint8_t send_buffer[50];
send_buffer[ind++] = COMM_ERASE_NEW_APP;
send_buffer[ind++] = flash_res == HAL_OK ? 1 : 0;
reply_func(send_buffer, ind);
} break;
case COMM_ERASE_BOOTLOADER_ALL_CAN_HW:
data[-1] = COMM_ERASE_BOOTLOADER_HW;
comm_can_send_buffer(255, data - 1, len + 1, 2);
chThdSleepMilliseconds(1500);
/* Falls through. */
/* no break */
case COMM_ERASE_BOOTLOADER_HW: {
int32_t ind = 0;
HW_TYPE hw = data[ind++];
char *hw_name = (char*)data + ind;
ind += strlen(hw_name) + 1;
if (hw != HW_TYPE_VESC_BMS || strcmp(hw_name, HW_NAME) != 0) {
break;
}
data += ind;
len -= ind;
}
/* Falls through. */
/* no break */
case COMM_ERASE_BOOTLOADER: {
int32_t ind = 0;
uint16_t flash_res = flash_helper_erase_bootloader();
ind = 0;
uint8_t send_buffer[50];
send_buffer[ind++] = COMM_ERASE_BOOTLOADER;
send_buffer[ind++] = flash_res == HAL_OK ? 1 : 0;
reply_func(send_buffer, ind);
} break;
case COMM_WRITE_NEW_APP_DATA_ALL_CAN_HW:
data[-1] = COMM_WRITE_NEW_APP_DATA_HW;
comm_can_send_buffer(255, data - 1, len + 1, 2);
/* Falls through. */
/* no break */
case COMM_WRITE_NEW_APP_DATA_HW: {
int32_t ind = 0;
HW_TYPE hw = data[ind++];
char *hw_name = (char*)data + ind;
ind += strlen(hw_name) + 1;
if (hw != HW_TYPE_VESC_BMS || strcmp(hw_name, HW_NAME) != 0) {
break;
}
data += ind;
len -= ind;
}
/* Falls through. */
/* no break */
case COMM_WRITE_NEW_APP_DATA: {
int32_t ind = 0;
uint32_t new_app_offset = buffer_get_uint32(data, &ind);
// Pad to multiple of 8 bytes
while (((len - ind) % 8) != 0) {
data[len++] = 0;
}
uint16_t flash_res = flash_helper_write_new_app_data(new_app_offset, data + ind, len - ind);
ind = 0;
uint8_t send_buffer[50];
send_buffer[ind++] = COMM_WRITE_NEW_APP_DATA;
send_buffer[ind++] = flash_res == HAL_OK ? 1 : 0;
buffer_append_uint32(send_buffer, new_app_offset, &ind);
reply_func(send_buffer, ind);
} break;
case COMM_BMS_GET_VALUES: {
int32_t ind = 0;
chMtxLock(&send_buffer_mutex);
send_buffer_global[ind++] = packet_id;
buffer_append_float32(send_buffer_global, bms_if_get_v_tot(), 1e6, &ind);
buffer_append_float32(send_buffer_global, bms_if_get_v_charge(), 1e6, &ind);
buffer_append_float32(send_buffer_global, bms_if_get_i_in(), 1e6, &ind);
buffer_append_float32(send_buffer_global, bms_if_get_i_in_ic(), 1e6, &ind);
buffer_append_float32(send_buffer_global, bms_if_get_ah_cnt(), 1e3, &ind);
buffer_append_float32(send_buffer_global, bms_if_get_wh_cnt(), 1e3, &ind);
// Cell voltages
send_buffer_global[ind++] = backup.config.cell_num;
for (int i = backup.config.cell_first_index;i <
(backup.config.cell_num + backup.config.cell_first_index);i++) {
buffer_append_float16(send_buffer_global, bms_if_get_v_cell(i), 1e3, &ind);
}
// Balancing state
for (int i = backup.config.cell_first_index;i <
(backup.config.cell_num + backup.config.cell_first_index);i++) {
send_buffer_global[ind++] = bms_if_is_balancing_cell(i);
}
// Temperatures
send_buffer_global[ind++] = HW_TEMP_SENSORS;
for (int i = 0;i < HW_TEMP_SENSORS;i++) {
buffer_append_float16(send_buffer_global, bms_if_get_temp(i), 1e2, &ind);
}
buffer_append_float16(send_buffer_global, bms_if_get_temp_ic(), 1e2, &ind);
// Humidity
buffer_append_float16(send_buffer_global, bms_if_get_humsens_temp_pcb(), 1e2, &ind);
buffer_append_float16(send_buffer_global, bms_if_get_humsens_hum_pcb(), 1e2, &ind);
// Highest cell temperature
buffer_append_float16(send_buffer_global, HW_TEMP_CELLS_MAX(), 1e2, &ind);
// State of charge and state of health
buffer_append_float16(send_buffer_global, bms_if_get_soc(), 1e3, &ind);
buffer_append_float16(send_buffer_global, bms_if_get_soh(), 1e3, &ind);
// CAN ID
send_buffer_global[ind++] = backup.config.controller_id;
// Total charge and discharge counters
buffer_append_float32_auto(send_buffer_global, bms_if_get_ah_cnt_chg_total(), &ind);
buffer_append_float32_auto(send_buffer_global, bms_if_get_wh_cnt_chg_total(), &ind);
buffer_append_float32_auto(send_buffer_global, bms_if_get_ah_cnt_dis_total(), &ind);
buffer_append_float32_auto(send_buffer_global, bms_if_get_wh_cnt_dis_total(), &ind);
// Pressure
buffer_append_float16(send_buffer_global, bms_if_get_humsens_pres_pcb(), 1e-1, &ind);
chMtxUnlock(&send_buffer_mutex);
reply_func(send_buffer_global, ind);
} break;
case COMM_BMS_GET_BATT_TYPE: {
main_config_t *conf = mempools_alloc_conf();
int32_t ind;
chMtxLock(&send_buffer_mutex);
ind = 0;
*conf = backup.config;
send_buffer_global[ind++] = packet_id;
buffer_append_uint32(send_buffer_global, conf->battery_type, &ind);
commands_send_packet(send_buffer_global, ind);
chMtxUnlock(&send_buffer_mutex);
mempools_free_conf(conf);
} break;
case COMM_BMS_SET_BATT_TYPE: {
main_config_t *conf = mempools_alloc_conf();
int32_t ind;
*conf = backup.config;
ind = 0;
conf->battery_type = buffer_get_uint32(data, &ind);
backup.config = *conf;
flash_helper_store_backup_data();
mempools_free_conf(conf);
// Send ack
ind = 0;
uint8_t send_buffer[50];
send_buffer[ind++] = packet_id;
reply_func(send_buffer, ind);
} break;
case COMM_FORWARD_CAN:
comm_can_send_buffer(data[0], data + 1, len - 1, 0);
break;
case COMM_BMS_SET_CHARGE_ALLOWED:
bms_if_set_charge_allowed(data[0]);
break;
case COMM_BMS_SET_BALANCE_OVERRIDE:
bms_if_set_balance_override(data[0], data[1]);
break;
case COMM_BMS_RESET_COUNTERS:
if (data[0]) {
bms_if_reset_counter_ah();
}
if (data[1]) {
bms_if_reset_counter_wh();
}
break;
case COMM_BMS_FORCE_BALANCE:
bms_if_force_balance(data[0]);
break;
case COMM_GET_EXT_HUM_TMP: {
int32_t ind = 0;
uint8_t send_buffer[12];
send_buffer[ind++] = packet_id;
buffer_append_float32(send_buffer, bms_if_get_humsens_hum_ext(), 1e2, &ind);
buffer_append_float32(send_buffer, bms_if_get_humsens_temp_ext(), 1e2, &ind);
reply_func(send_buffer, ind);
} break;
case COMM_GET_CUSTOM_CONFIG:
case COMM_GET_CUSTOM_CONFIG_DEFAULT: {
main_config_t *conf = mempools_alloc_conf();
int conf_ind = data[0];
if (conf_ind != 0) {
break;
}
if (packet_id == COMM_GET_CUSTOM_CONFIG) {
*conf = backup.config;
} else {
confparser_set_defaults_main_config_t(conf);
}
chMtxLock(&send_buffer_mutex);
int32_t ind = 0;
send_buffer_global[ind++] = packet_id;
send_buffer_global[ind++] = conf_ind;
int32_t len = confparser_serialize_main_config_t(send_buffer_global + ind, conf);
commands_send_packet(send_buffer_global, len + ind);
chMtxUnlock(&send_buffer_mutex);
mempools_free_conf(conf);
} break;
case COMM_SET_CUSTOM_CONFIG: {
main_config_t *conf = mempools_alloc_conf();
*conf = backup.config;
int conf_ind = data[0];
if (conf_ind == 0 && confparser_deserialize_main_config_t(data + 1, conf)) {
conf_general_apply_hw_limits(conf);
backup.config = *conf;
flash_helper_store_backup_data();
comm_can_set_baud(backup.config.can_baud_rate);
int32_t ind = 0;
uint8_t send_buffer[50];
send_buffer[ind++] = packet_id;
reply_func(send_buffer, ind);
} else {
commands_printf("Warning: Could not set configuration");
}
mempools_free_conf(conf);
} break;
case COMM_GET_CUSTOM_CONFIG_XML: {
int32_t ind = 0;
int conf_ind = data[ind++];
if (conf_ind != 0) {
break;
}
int32_t len_conf = buffer_get_int32(data, &ind);
int32_t ofs_conf = buffer_get_int32(data, &ind);
if ((len_conf + ofs_conf) > DATA_MAIN_CONFIG_T__SIZE || len_conf > (PACKET_MAX_PL_LEN - 10)) {
break;
}
chMtxLock(&send_buffer_mutex);
ind = 0;
send_buffer_global[ind++] = packet_id;
send_buffer_global[ind++] = conf_ind;
buffer_append_int32(send_buffer_global, DATA_MAIN_CONFIG_T__SIZE, &ind);
buffer_append_int32(send_buffer_global, ofs_conf, &ind);
memcpy(send_buffer_global + ind, data_main_config_t_ + ofs_conf, len_conf);
ind += len_conf;
reply_func(send_buffer_global, ind);
chMtxUnlock(&send_buffer_mutex);
} break;
case COMM_TERMINAL_CMD_SYNC:
data[len] = '\0';
chMtxLock(&terminal_mutex);
terminal_process_string((char*)data);
chMtxUnlock(&terminal_mutex);
break;
case COMM_REBOOT:
NVIC_SystemReset();
break;
case COMM_IO_BOARD_SET_PWM: {
int32_t ind = 0;
int id = buffer_get_int16(data, &ind);
int channel = buffer_get_int16(data, &ind);
float duty = buffer_get_float32_auto(data, &ind);
comm_can_io_board_set_output_pwm(id, channel, duty);
} break;
case COMM_IO_BOARD_SET_DIGITAL: {
int32_t ind = 0;
int id = buffer_get_int16(data, &ind);
int channel = buffer_get_int16(data, &ind);
bool on = data[ind++];
comm_can_io_board_set_output_digital(id, channel, on);
} break;
// Power switch
case COMM_PSW_GET_STATUS: {
int32_t ind = 0;
bool by_id = data[ind++];
int id_ind = buffer_get_int16(data, &ind);
int psws_num = 0;
for (int i = 0;i < CAN_STATUS_MSGS_TO_STORE;i++) {
psw_status *stat = comm_can_get_psw_status_index(i);
if (stat->id >= 0) {
psws_num++;
} else {
break;
}
}
psw_status *stat = 0;
if (by_id) {
stat = comm_can_get_psw_status_id(id_ind);
} else if (id_ind < psws_num) {
stat = comm_can_get_psw_status_index(id_ind);
}
if (stat) {
ind = 0;
uint8_t send_buffer[70];
send_buffer[ind++] = packet_id;
buffer_append_int16(send_buffer, stat->id, &ind);
buffer_append_int16(send_buffer, psws_num, &ind);
buffer_append_float32_auto(send_buffer, UTILS_AGE_S(stat->rx_time), &ind);
buffer_append_float32_auto(send_buffer, stat->v_in, &ind);
buffer_append_float32_auto(send_buffer, stat->v_out, &ind);
buffer_append_float32_auto(send_buffer, stat->temp, &ind);
send_buffer[ind++] = stat->is_out_on;
send_buffer[ind++] = stat->is_pch_on;
send_buffer[ind++] = stat->is_dsc_on;
reply_func(send_buffer, ind);
}
} break;
case COMM_PSW_SWITCH: {
int32_t ind = 0;
int id = buffer_get_int16(data, &ind);
bool is_on = data[ind++];
bool plot = data[ind++];
comm_can_psw_switch(id, is_on, plot);
} break;
case COMM_BMS_HW_DATA: {
HW_SEND_DATA(reply_func);
} break;
case COMM_CUSTOM_APP_DATA: {
if (appdata_func) {
appdata_func(data, len);
}
} break;
// Blocking commands. Only one of them runs at any given time, in their
// own thread. If other blocking commands come before the previous one has
// finished, they are discarded.
case COMM_TERMINAL_CMD:
case COMM_PING_CAN:
case COMM_BMS_ZERO_CURRENT_OFFSET:
case COMM_BM_CONNECT:
case COMM_BM_ERASE_FLASH_ALL:
case COMM_BM_WRITE_FLASH_LZO:
case COMM_BM_WRITE_FLASH:
case COMM_BM_REBOOT:
case COMM_BM_DISCONNECT:
case COMM_BM_MAP_PINS_DEFAULT:
case COMM_BM_MAP_PINS_NRF5X:
case COMM_BM_MEM_READ:
case COMM_BM_MEM_WRITE:
case COMM_BMS_BLNC_SELFTEST:
if (!is_blocking) {
memcpy(blocking_thread_cmd_buffer, data - 1, len + 1);
blocking_thread_cmd_len = len + 1;
is_blocking = true;
send_func_blocking = reply_func;
chEvtSignal(blocking_tp, (eventmask_t)1);
}
break;
default:
break;
}
}
void commands_send_packet(unsigned char *data, unsigned int len) {
if (send_func) {
send_func(data, len);
}
}
void commands_printf(const char* format, ...) {
chMtxLock(&print_mutex);
va_list arg;
va_start (arg, format);
int len;
static char print_buffer[255];
print_buffer[0] = COMM_PRINT;
len = vsnprintf(print_buffer + 1, 254, format, arg);
va_end (arg);
if(len > 0) {
commands_send_packet((unsigned char*)print_buffer,
(len < 254) ? len + 1 : 255);
}
chMtxUnlock(&print_mutex);
}
void commands_set_app_data_handler(void(*func)(unsigned char *data, unsigned int len)) {
appdata_func = func;
}
void commands_send_app_data(unsigned char *data, unsigned int len) {
int32_t index = 0;
if (len > PACKET_MAX_PL_LEN)
return;
chMtxLock(&send_buffer_mutex);
send_buffer_global[index++] = COMM_CUSTOM_APP_DATA;
memcpy(send_buffer_global + index, data, len);
index += len;
commands_send_packet(send_buffer_global, index);
chMtxUnlock(&send_buffer_mutex);
}
static THD_FUNCTION(blocking_thread, arg) {
(void)arg;
chRegSetThreadName("comm_block");
blocking_tp = chThdGetSelfX();
for(;;) {
is_blocking = false;
chEvtWaitAny((eventmask_t) 1);
uint8_t *data = blocking_thread_cmd_buffer;
unsigned int len = blocking_thread_cmd_len;
COMM_PACKET_ID packet_id;
static uint8_t send_buffer[512];
packet_id = data[0];
data++;
len--;
switch (packet_id) {
case COMM_BMS_ZERO_CURRENT_OFFSET:
bms_if_zero_current_offset();
break;
case COMM_TERMINAL_CMD:
data[len] = '\0';
chMtxLock(&terminal_mutex);
terminal_process_string((char*)data);
chMtxUnlock(&terminal_mutex);
break;
case COMM_PING_CAN: {
int32_t ind = 0;
send_buffer[ind++] = COMM_PING_CAN;
for (uint8_t i = 0;i < 255;i++) {
HW_TYPE hw_type;
if (comm_can_ping(i, &hw_type)) {
send_buffer[ind++] = i;
}
}
if (send_func_blocking) {
send_func_blocking(send_buffer, ind);
}
} break;
#if HAS_BLACKMAGIC
case COMM_BM_CONNECT: {
int32_t ind = 0;
send_buffer[ind++] = packet_id;
buffer_append_int16(send_buffer, bm_connect(), &ind);
if (send_func_blocking) {
send_func_blocking(send_buffer, ind);
}
} break;
case COMM_BM_ERASE_FLASH_ALL: {
int32_t ind = 0;
send_buffer[ind++] = packet_id;
buffer_append_int16(send_buffer, bm_erase_flash_all(), &ind);
if (send_func_blocking) {
send_func_blocking(send_buffer, ind);
}
} break;
case COMM_BM_WRITE_FLASH_LZO:
case COMM_BM_WRITE_FLASH: {
if (packet_id == COMM_BM_WRITE_FLASH_LZO) {
memcpy(send_buffer, data + 6, len - 6);
int32_t ind = 4;
lzo_uint decompressed_len = buffer_get_uint16(data, &ind);
lzo1x_decompress_safe(send_buffer, len - 6, data + 4, &decompressed_len, NULL);
len = decompressed_len + 4;
}
int32_t ind = 0;
uint32_t addr = buffer_get_uint32(data, &ind);
int res = bm_write_flash(addr, data + ind, len - ind);
ind = 0;
send_buffer[ind++] = packet_id;
buffer_append_int16(send_buffer, res, &ind);
if (send_func_blocking) {
send_func_blocking(send_buffer, ind);
}
} break;
case COMM_BM_REBOOT: {
int32_t ind = 0;
send_buffer[ind++] = packet_id;
buffer_append_int16(send_buffer, bm_reboot(), &ind);
if (send_func_blocking) {
send_func_blocking(send_buffer, ind);
}
} break;
case COMM_BM_DISCONNECT: {
bm_disconnect();
bm_leave_nrf_debug_mode();
int32_t ind = 0;
send_buffer[ind++] = packet_id;
if (send_func_blocking) {
send_func_blocking(send_buffer, ind);
}
} break;
case COMM_BM_MAP_PINS_DEFAULT: {
bm_default_swd_pins();
int32_t ind = 0;
send_buffer[ind++] = packet_id;
buffer_append_int16(send_buffer, 1, &ind);
if (send_func_blocking) {
send_func_blocking(send_buffer, ind);
}
} break;
case COMM_BM_MAP_PINS_NRF5X: {
int32_t ind = 0;
send_buffer[ind++] = packet_id;
#ifdef NRF5x_SWDIO_GPIO
buffer_append_int16(send_buffer, 1, &ind);
bm_change_swd_pins(NRF5x_SWDIO_GPIO, NRF5x_SWDIO_PIN,
NRF5x_SWCLK_GPIO, NRF5x_SWCLK_PIN);
#else
buffer_append_int16(send_buffer, 0, &ind);
#endif
if (send_func_blocking) {
send_func_blocking(send_buffer, ind);
}
} break;
case COMM_BM_MEM_READ: {
int32_t ind = 0;
uint32_t addr = buffer_get_uint32(data, &ind);
uint16_t read_len = buffer_get_uint16(data, &ind);
if (read_len > sizeof(send_buffer) - 3) {
read_len = sizeof(send_buffer) - 3;
}
int res = bm_mem_read(addr, send_buffer + 3, read_len);
ind = 0;
send_buffer[ind++] = packet_id;
buffer_append_int16(send_buffer, res, &ind);
if (send_func_blocking) {
send_func_blocking(send_buffer, ind + read_len);
}
} break;
case COMM_BM_MEM_WRITE: {
int32_t ind = 0;
uint32_t addr = buffer_get_uint32(data, &ind);
int res = bm_mem_write(addr, data + ind, len - ind);
ind = 0;
send_buffer[ind++] = packet_id;
buffer_append_int16(send_buffer, res, &ind);
if (send_func_blocking) {
send_func_blocking(send_buffer, ind);
}
} break;
#endif
case COMM_BMS_BLNC_SELFTEST: {
int32_t ind = 0;
chMtxLock(&send_buffer_mutex);
send_buffer_global[ind++] = packet_id;
ind += selftest_serialize_result(send_buffer_global + ind, (sizeof(send_buffer_global) - ind));
send_func_blocking(send_buffer_global, ind);
chMtxUnlock(&send_buffer_mutex);
} break;
default:
break;
}
}
}