mirror of
https://github.com/rvtr/ctr_mcu.git
synced 2025-10-31 13:51:10 -04:00
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_mcu@193 013db118-44a6-b54f-8bf7-843cb86687b1
27 lines
601 B
C
27 lines
601 B
C
#ifndef __tasks__
|
|
#define __tasks__
|
|
|
|
#include "renge_defs.h"
|
|
|
|
// *************************************
|
|
#define TASK_IMMED_RUN_LIST_MAX 8
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
// *************************************
|
|
#define TSK_IMM_EMPTY_ ( void * )( 0x0000 )
|
|
#define TSK_IMM_DELETED_ ( void * )( 0x0001 )
|
|
|
|
|
|
|
|
#endif
|