arm: fix warnings discarded-qualifiers

This commit is contained in:
Philippe Teuwen 2020-05-10 17:28:55 +02:00
commit 5f1ff72f7c
3 changed files with 7 additions and 7 deletions

View file

@ -42,12 +42,12 @@
reply_via_usb = tmpusb;}
void DbpString(char *str);
void DbpStringEx(uint32_t flags, char *src, size_t srclen);
void DbpString(const char *str);
void DbpStringEx(uint32_t flags, const char *src, size_t srclen);
void Dbprintf(const char *fmt, ...);
void DbprintfEx(uint32_t flags, const char *fmt, ...);
void Dbhexdump(int len, uint8_t *d, bool bAsci);
void print_result(char *name, uint8_t *buf, size_t len);
void print_result(const char *name, uint8_t *buf, size_t len);
//void PrintToSendBuffer(void);
#endif