use char instead of uint8_t to match gossamer API

This commit is contained in:
joeycastillo
2024-10-27 14:27:55 -04:00
parent 93d88190ce
commit 83c7f18dd0
4 changed files with 7 additions and 7 deletions

View File

@@ -63,7 +63,7 @@ bool irda_demo_face_loop(movement_event_t event, void *context) {
case EVENT_ACTIVATE:
case EVENT_TICK:
{
uint8_t data[32];
char data[32];
size_t bytes_read = uart_read_instance(0, data, 32);
if (bytes_read) {
char buf[14];