nkjnm
Dependencies: MAX44000 nexpaq_mdk
Fork of LED_Demo by
Diff: nexpaq_mdk_src/source/np_apis.h
- Revision:
- 0:b86eda0e990d
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nexpaq_mdk_src/source/np_apis.h Sat Sep 17 16:21:40 2016 +0000 @@ -0,0 +1,30 @@ +/* + * np_apis.h + * + * Created on: July 14, 2016 + * Author: Alan.Lin + * + * Copyright: NexPack Ltd. + */ + +#ifndef NP_APIS_H_ +#define NP_APIS_H_ + +#include <stdint.h> +#ifdef __cplusplus +extern "C" { +#endif + +typedef void (*my_VOID_UCUC)(uint8_t*, uint8_t); +typedef struct { + uint16_t command; + my_VOID_UCUC function; +} MDK_REGISTER_CMD; + +extern MDK_REGISTER_CMD *mdk_cmd_func_table_ptr; +extern uint8_t mdk_cmd_func_number; +#ifdef __cplusplus +} +#endif + +#endif /* NP_APIS_H_ */