mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
msba2/tools: Fix cppcheck issues
This commit is contained in:
parent
9ed393426e
commit
95a4e75423
@ -854,7 +854,7 @@ static void download_main(int event)
|
||||
// bootloader again. Intead, we need to download a tiny ARM
|
||||
// program that reconfigures the hardware and then jumps to zero.
|
||||
//snprintf(buf, sizeof(buf), "G %d A\r\n", 0);
|
||||
snprintf(buf, sizeof(buf), "W %u %d\r\n", chip->ram_addr, chip->bootprog[0] * 4);
|
||||
snprintf(buf, sizeof(buf), "W %u %u\r\n", chip->ram_addr, chip->bootprog[0] * 4);
|
||||
xmit_cmd(buf, 4);
|
||||
return;
|
||||
|
||||
|
@ -120,8 +120,8 @@ int read_intel_hex(const char *filename)
|
||||
int
|
||||
parse_hex_line(char *line)
|
||||
{
|
||||
int addr, code, num;
|
||||
int sum, len, cksum, i;
|
||||
unsigned int addr, code, num;
|
||||
unsigned int sum, len, cksum, i;
|
||||
char *ptr;
|
||||
|
||||
num = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user