Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed SDFileSystem
commands.h
- Committer:
- ffxx68
- Date:
- 2022-07-19
- Revision:
- 8:70f13d97eb44
- Parent:
- 7:0243d36a655a
File content as of revision 8:70f13d97eb44:
#ifndef COMMANDS_H
#define COMMANDS_H
#include "mbed.h"
#define BUF_SIZE 256 // comms data depth
extern volatile char inDataBuf[];
extern volatile char outDataBuf[];
extern volatile uint16_t inBufPosition;
extern volatile uint16_t outBufPosition;
extern volatile uint8_t checksum;
void ProcessCommand ( void ) ;
#endif