2022-05-19 08:57:38 -04:00
|
|
|
#include "uart_commands.h"
|
|
|
|
|
2022-05-22 17:44:17 -04:00
|
|
|
static uint8_t data[1024];
|
2022-05-19 08:57:38 -04:00
|
|
|
|
2022-05-19 15:37:51 -04:00
|
|
|
char OK[5] = "OK\r\n";
|
|
|
|
char ERR[6] = "ERR\r\n";
|
2022-05-30 11:50:19 -04:00
|
|
|
char CMD_ILLEGAL[13] = "CMD_ILLEGAL\r\n";
|
2022-05-19 08:57:38 -04:00
|
|
|
|
2022-05-24 10:52:09 -04:00
|
|
|
void digit_to_str(char* str, uint32_t number, int base){
|
2022-05-24 08:53:35 -04:00
|
|
|
itoa(number,str,16);
|
|
|
|
}
|
|
|
|
|
2022-05-24 09:17:23 -04:00
|
|
|
|
2022-05-19 08:57:38 -04:00
|
|
|
void uart_commands_getid(error_code* status){
|
2022-05-28 13:30:55 -04:00
|
|
|
//char hex[15] = "0x26113f37\r\n";
|
|
|
|
char hex[15];
|
2022-05-19 08:57:38 -04:00
|
|
|
uint32_t res = iap_read_part_id(status);
|
2022-05-28 13:30:55 -04:00
|
|
|
digit_to_str(hex+2, res, 16);
|
2022-05-24 10:52:09 -04:00
|
|
|
hex[0]='0';
|
|
|
|
hex[1]='x';
|
2022-05-24 08:53:35 -04:00
|
|
|
//sprintf(hex, "0x%x\r\n", res);
|
2022-05-19 08:57:38 -04:00
|
|
|
if(*status == 0){
|
2022-05-24 08:53:35 -04:00
|
|
|
uart_send_ok();
|
2022-05-19 15:37:51 -04:00
|
|
|
uart_send(hex, strlen(hex));
|
2022-05-28 13:30:55 -04:00
|
|
|
uart_send("\r\n", 2);
|
2022-05-30 13:34:27 -04:00
|
|
|
}else{
|
|
|
|
uart_send_err();
|
|
|
|
}
|
2022-05-19 08:57:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void uart_commands_getserial(error_code* status){
|
2022-05-30 13:34:27 -04:00
|
|
|
char digit;
|
2022-05-28 18:05:04 -04:00
|
|
|
char hex[40];
|
2022-05-19 08:57:38 -04:00
|
|
|
uint32_t res[4];
|
|
|
|
iap_read_serial(status, res);
|
2022-05-28 18:05:04 -04:00
|
|
|
digit_to_str(hex+2, res[0], 16);
|
2022-05-24 10:52:09 -04:00
|
|
|
hex[0]='0';
|
|
|
|
hex[1]='x';
|
2022-05-30 13:34:27 -04:00
|
|
|
if(*status != ok){
|
|
|
|
uart_send_err();
|
|
|
|
itoa(*status, &digit, 10);
|
|
|
|
uart_send(&digit, 1);
|
|
|
|
}
|
|
|
|
if(*status == ok){
|
2022-05-24 06:48:02 -04:00
|
|
|
uart_send_ok();
|
2022-05-24 09:17:23 -04:00
|
|
|
uart_send(hex, strlen(hex));
|
2022-05-30 13:34:27 -04:00
|
|
|
digit_to_str(hex, res[1], 16);
|
|
|
|
uart_send(hex, strlen(hex));
|
|
|
|
digit_to_str(hex, res[2], 16);
|
|
|
|
uart_send(hex, strlen(hex));
|
|
|
|
digit_to_str(hex, res[3], 16);
|
|
|
|
uart_send(hex, strlen(hex));
|
|
|
|
uart_send("\r\n", 2);
|
2022-05-19 08:57:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-24 06:48:02 -04:00
|
|
|
crc_t uart_commands_prog(error_code* status, int size){
|
2022-05-28 13:30:55 -04:00
|
|
|
char digit;
|
2022-05-24 09:43:24 -04:00
|
|
|
int start = addr_to_sector(APP_OFFSET);
|
|
|
|
int end = addr_to_sector(APP_OFFSET+size);
|
|
|
|
iap_prepare_sectors(status, addr_to_sector(APP_OFFSET), addr_to_sector(APP_OFFSET+size));
|
2022-05-24 09:17:23 -04:00
|
|
|
if(*status != ok){
|
|
|
|
uart_send_err();
|
|
|
|
itoa(*status, &digit, 10);
|
2022-05-24 10:52:09 -04:00
|
|
|
uart_send(&digit, 1);
|
2022-05-24 09:17:23 -04:00
|
|
|
}
|
2022-05-24 09:43:24 -04:00
|
|
|
iap_erase_sectors(status, addr_to_sector(APP_OFFSET), addr_to_sector(APP_OFFSET+size));
|
2022-05-24 09:17:23 -04:00
|
|
|
if(*status != ok){
|
|
|
|
uart_send_err();
|
|
|
|
itoa(*status, &digit, 10);
|
2022-05-24 10:52:09 -04:00
|
|
|
uart_send(&digit, 1);
|
2022-05-24 09:17:23 -04:00
|
|
|
}
|
2022-05-24 09:43:24 -04:00
|
|
|
iap_prepare_sectors(status, addr_to_sector(APP_OFFSET), addr_to_sector(APP_OFFSET+size));
|
2022-05-24 09:17:23 -04:00
|
|
|
if(*status != ok){
|
|
|
|
uart_send_err();
|
|
|
|
itoa(*status, &digit, 10);
|
2022-05-24 10:52:09 -04:00
|
|
|
uart_send(&digit, 1);
|
2022-05-24 09:17:23 -04:00
|
|
|
}
|
2022-05-24 06:48:02 -04:00
|
|
|
uart_send_ok();
|
2022-05-22 13:52:44 -04:00
|
|
|
return crc_init();
|
2022-05-19 08:57:38 -04:00
|
|
|
}
|
|
|
|
|
2022-05-19 15:37:51 -04:00
|
|
|
error_code uart_commands_data(error_code* status, int size, crc_t* checksum_global, crc_t checksum_loc, int offset){
|
2022-05-24 09:17:23 -04:00
|
|
|
char digit;
|
2022-05-22 13:52:44 -04:00
|
|
|
uart_receive_data(data, size);
|
2022-05-19 08:57:38 -04:00
|
|
|
crc_t checksum_tmp = crc_init();
|
|
|
|
checksum_tmp = crc_update(checksum_tmp, data, size);
|
2022-05-22 13:52:44 -04:00
|
|
|
checksum_tmp = crc_finalize(checksum_tmp);
|
2022-05-24 06:48:02 -04:00
|
|
|
int offset_counter = offset;
|
2022-05-19 08:57:38 -04:00
|
|
|
if(checksum_loc == checksum_tmp){
|
|
|
|
int tmp = size;
|
2022-05-24 09:17:23 -04:00
|
|
|
iap_prepare_sectors(status, addr_to_sector(offset), addr_to_sector(offset+size)+1);
|
2022-05-22 17:44:17 -04:00
|
|
|
*checksum_global = crc_update(*checksum_global, data, size);
|
2022-05-24 08:53:35 -04:00
|
|
|
//verify if size == 4095 if smaller
|
|
|
|
if(size == 0x0400)
|
|
|
|
iap_copy_to_flash(status, offset, data, size);
|
|
|
|
else{
|
|
|
|
iap_copy_to_flash(status, offset, data, 0x400);
|
|
|
|
*checksum_global = crc_finalize(*checksum_global);
|
2022-05-19 08:57:38 -04:00
|
|
|
}
|
2022-05-24 08:53:35 -04:00
|
|
|
if(*status != ok){
|
|
|
|
uart_send_err();
|
2022-05-24 09:17:23 -04:00
|
|
|
itoa(*status, &digit, 10);
|
2022-05-24 10:52:09 -04:00
|
|
|
uart_send(&digit, 1);
|
2022-05-24 08:53:35 -04:00
|
|
|
return *status;
|
2022-05-19 08:57:38 -04:00
|
|
|
}
|
2022-05-24 06:48:02 -04:00
|
|
|
uart_send_ok();
|
2022-05-19 15:37:51 -04:00
|
|
|
return ok;
|
2022-05-19 08:57:38 -04:00
|
|
|
}else{
|
2022-05-24 06:48:02 -04:00
|
|
|
uart_send_err();
|
2022-05-24 09:17:23 -04:00
|
|
|
itoa(*status, &digit, 10);
|
2022-05-24 10:52:09 -04:00
|
|
|
uart_send(&digit, 1);
|
2022-05-19 08:57:38 -04:00
|
|
|
}
|
2022-05-24 09:17:23 -04:00
|
|
|
return local_checksum;
|
2022-05-19 08:57:38 -04:00
|
|
|
}
|
|
|
|
|
2022-05-19 15:37:51 -04:00
|
|
|
error_code uart_commands_check(crc_t crc_received, crc_t crc_calculated){
|
|
|
|
if(crc_received == crc_calculated) return ok;
|
|
|
|
else return global_checksum;
|
|
|
|
}
|
|
|
|
|
2022-05-19 08:57:38 -04:00
|
|
|
|
|
|
|
// return: -1 in case of ERR otherwise 0.
|
|
|
|
int uart_parse_command(char *user_input, cmd_t *cmd) {
|
|
|
|
|
|
|
|
//Initialize a simple command (empty, simple, foreground)
|
2022-05-24 06:48:02 -04:00
|
|
|
cmd->argv[0] = NULL;
|
|
|
|
cmd->argv[1] = NULL;
|
|
|
|
cmd->argv[2] = NULL;
|
2022-05-19 08:57:38 -04:00
|
|
|
cmd->argc = -1;
|
|
|
|
|
|
|
|
//Separate string in different token (i.e. command name + params + &)
|
|
|
|
do {
|
|
|
|
//A new element will be added
|
|
|
|
cmd->argc += 1;
|
|
|
|
|
|
|
|
//Get the adress of the next token (could be NULL to indicate end of argv)
|
|
|
|
cmd->argv[cmd->argc] = strtok(user_input, DELIMIERS);
|
|
|
|
user_input = NULL; //Useless to execute it each time but easier than having two different strtok calls
|
|
|
|
} while (cmd->argv[cmd->argc] != NULL); // while there are still tokens
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t uart_string_to_int(const char *str) {
|
2022-05-24 07:21:02 -04:00
|
|
|
//char* tmp;
|
|
|
|
//unsigned long long int hex = strtoull(str, &tmp, 16);
|
|
|
|
unsigned long int hex = strtoul(str, NULL, 16);
|
2022-05-19 08:57:38 -04:00
|
|
|
return hex;
|
|
|
|
}
|
2022-05-24 06:48:02 -04:00
|
|
|
|
|
|
|
void uart_send_ok(){
|
|
|
|
uart_send(OK, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void uart_send_err(){
|
|
|
|
uart_send(ERR, 6);
|
2022-05-24 07:21:02 -04:00
|
|
|
}
|
2022-05-30 11:50:19 -04:00
|
|
|
|
|
|
|
void uart_send_cmd_illeg(){
|
|
|
|
uart_send(CMD_ILLEGAL, 13);
|
|
|
|
}
|