mirror of
https://github.com/rvtr/ctr_mcu.git
synced 2025-10-31 13:51:10 -04:00
26 lines
635 B
C
26 lines
635 B
C
#ifndef __tasks__
|
|
#define __tasks__
|
|
|
|
#include "renge_defs.h"
|
|
|
|
// *************************************
|
|
#define TASK_IMMED_RUN_LIST_MAX 10
|
|
|
|
|
|
extern task_status_immed tski_do_command0( );
|
|
extern task_status_immed tski_ntr_pmic_comm();
|
|
extern task_status_immed tski_acc_read();
|
|
extern task_status_immed tski_acc_write();
|
|
//extern task_status_immed tski_acc_hosu_set(); // accero.h
|
|
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
|