Port FT22 code

This commit is contained in:
2023-03-12 21:06:23 +01:00
parent b453286f08
commit 4f43895235
20 changed files with 794 additions and 51 deletions

12
Core/Inc/util.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef INC_UTIL_H
#define INC_UTIL_H
#include <stdint.h>
void set_error_led();
uint64_t ntohll(uint64_t netlonglong);
uint32_t ntohl(uint32_t netlong);
uint16_t ntohs(uint16_t netshort);
#endif // INC_UTIL_H