mirror of
https://github.com/rvtr/ctr_mcu.git
synced 2025-10-31 13:51:10 -04:00
27 lines
645 B
C
27 lines
645 B
C
#ifndef __tasks__
|
|
#define __tasks__
|
|
|
|
#include "renge_defs.h"
|
|
|
|
// *************************************
|
|
#define TASK_IMMED_RUN_LIST_MAX 10
|
|
|
|
|
|
extern task_status_immed do_command0( );
|
|
extern task_status_immed ntr_pmic_comm();
|
|
extern task_status_immed acc_read();
|
|
extern task_status_immed acc_write();
|
|
extern task_status_immed tski_mcu_info_read();
|
|
//extern task_status_immed acc_hosu_set();
|
|
extern task_status_immed tski_mcu_reset();
|
|
extern task_status_immed tski_vol_update();
|
|
|
|
|
|
// *************************************
|
|
#define TSK_IMM_EMPTY_ ( void * )( 0x0000 )
|
|
#define TSK_IMM_DELETED_ ( void * )( 0x0001 )
|
|
|
|
|
|
|
|
#endif
|