Skip to content
Snippets Groups Projects

Minor additions to host

Merged Zoe Michaela Dietmar Pfister requested to merge 54-push-data-from-host-to-server into develop
17 files
+ 638
802
Compare changes
  • Side-by-side
  • Inline
Files
17
+ 16
0
 
//
 
// Created by zoe on 1/24/23.
 
//
 
 
#ifndef HOST_CENTRAL_MAST_MESSAGETYPE_H
 
#define HOST_CENTRAL_MAST_MESSAGETYPE_H
 
 
enum MessageType { dataAck, hostChange };
 
 
typedef struct response {
 
MessageType type;
 
uint8_t mac[6];
 
long time; // Clang-Tidy: Narrowing conversion from 'unsigned long' to signed type 'long' is implementation-defined
 
// (see rtc in main.cpp)
 
} response;
 
#endif // HOST_CENTRAL_MAST_MESSAGETYPE_H
Loading