removes firmwares to just keep BSP

This commit is contained in:
2024-01-13 08:28:11 +01:00
parent 7728785e27
commit 1c600a0458
295 changed files with 1 additions and 19263 deletions

1
libwrap/misc/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/*.o

19
libwrap/misc/write_hex.c Normal file
View File

@ -0,0 +1,19 @@
/* See LICENSE of license details. */
#include <stdint.h>
#include <unistd.h>
#include "platform.h"
void write_hex(int fd, uint32_t hex)
{
uint8_t ii;
uint8_t jj;
char towrite;
write(fd , "0x", 2);
for (ii = 8 ; ii > 0; ii--) {
jj = ii - 1;
uint8_t digit = ((hex & (0xF << (jj*4))) >> (jj*4));
towrite = digit < 0xA ? ('0' + digit) : ('A' + (digit - 0xA));
write(fd, &towrite, 1);
}
}