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: BMI160 max32630hsp3 MemoryLCD USBDevice
Fork of Host_Software_MAX32664GWEC_SpO2_HR-_EXTE by
cmdUI/cmdInterface.h
- Committer:
- seyhmus.cacina
- Date:
- 2019-03-18
- Revision:
- 0:b259fd1a88f5
File content as of revision 0:b259fd1a88f5:
/*
* cmdInterface.h
*
* Created on: Jan 30, 2019
* Author: Yagmur.Gok
*/
#ifndef SOURCE_CMDUI_CMDINTERFACE_H_
#define SOURCE_CMDUI_CMDINTERFACE_H_
#define COMM_SUCCESS 0
#define COMM_GENERAL_ERROR -1
#define COMM_INVALID_PARAM -254
#define COMM_NOT_RECOGNIZED -255
#define FLASH_ERR_GENERAL -1
#define FLASH_ERR_CHECKSUM -2
#define FLASH_ERR_AUTH -3
void cmdIntf_build_command(char ch);
enum{
HOSTMODEAPPLICATION = 0,
HOSTMODEBOOTLOADER = 1
};
uint8_t get_internal_operating_mode(void);
#endif /* SOURCE_CMDUI_CMDINTERFACE_H_ */
