temp commit: Expose write functions to make development easier

This commit is contained in:
Daniel Jobson 2024-09-04 09:29:40 +02:00
parent 7f7820b698
commit ece53e044c
No known key found for this signature in database
GPG key ID: 3707A9DBF4BB8F1A
3 changed files with 3 additions and 3 deletions

View file

@ -58,4 +58,5 @@ void writebyte(uint8_t b);
uint8_t readbyte(void);
void fwreply(struct frame_header hdr, enum fwcmd rspcode, uint8_t *buf);
int readcommand(struct frame_header *hdr, uint8_t *cmd, int state);
void write(uint8_t *buf, size_t nbytes);
#endif