⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 os_core.src

📁 一个很好的将ucos移植到51的范例
💻 SRC
📖 第 1 页 / 共 5 页
字号:
	DB	002H
	DB	000H
	DB	001H
	DB	000H
	DB	003H
	DB	000H
	DB	001H
	DB	000H
	DB	002H
	DB	000H
	DB	001H
	DB	000H

; /*
; *********************************************************************************************************
; *                                                uC/OS-II
; *                                          The Real-Time Kernel
; *                                             CORE FUNCTIONS
; *
; *                          (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL
; *                                           All Rights Reserved
; *
; * File : OS_CORE.C
; * By   : Jean J. Labrosse
; *********************************************************************************************************
; */
; 
; #ifndef  OS_MASTER_FILE
; #define  OS_GLOBALS
; #include "includes.h"
; #endif
; 
; /*
; *********************************************************************************************************
; *                              MAPPING TABLE TO MAP BIT POSITION TO BIT MASK
; *
; * Note: Index into table is desired bit position, 0..7
; *       Indexed value corresponds to bit mask
; *********************************************************************************************************
; */
; 
; INT8U  const  OSMapTbl[]   = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};
; 
; /*
; *********************************************************************************************************
; *                                       PRIORITY RESOLUTION TABLE
; *
; * Note: Index into table is bit pattern to resolve highest priority
; *       Indexed value corresponds to highest priority bit position (i.e. 0..7)
; *********************************************************************************************************
; */
; 
; INT8U  const  OSUnMapTbl[] = {
;     0, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x00 to 0x0F                             */
;     4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x10 to 0x1F                             */
;     5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x20 to 0x2F                             */
;     4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x30 to 0x3F                             */
;     6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x40 to 0x4F                             */
;     4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x50 to 0x5F                             */
;     5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x60 to 0x6F                             */
;     4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x70 to 0x7F                             */
;     7, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x80 to 0x8F                             */
;     4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x90 to 0x9F                             */
;     5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xA0 to 0xAF                             */
;     4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xB0 to 0xBF                             */
;     6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xC0 to 0xCF                             */
;     4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xD0 to 0xDF                             */
;     5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xE0 to 0xEF                             */
;     4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0        /* 0xF0 to 0xFF                             */
; };
; 
; /*
; *********************************************************************************************************
; *                                       FUNCTION PROTOTYPES
; *********************************************************************************************************
; */
; static  void  OS_InitEventList(void) LG_REENTRANT;
; static  void  OS_InitMisc(void) LG_REENTRANT;
; static  void  OS_InitRdyList(void) LG_REENTRANT;
; static  void  OS_InitTaskIdle(void) LG_REENTRANT;
; static  void  OS_InitTaskStat(void) LG_REENTRANT;
; static  void  OS_InitTCBList(void) LG_REENTRANT;
; 
; /*$PAGE*/
; /*
; *********************************************************************************************************
; *                                             INITIALIZATION
; *
; * Description: This function is used to initialize the internals of uC/OS-II and MUST be called prior to
; *              creating any uC/OS-II object and, prior to calling OSStart().
; *
; * Arguments  : none
; *
; * Returns    : none
; *********************************************************************************************************
; */
; 
; void  OSInit (void) LG_REENTRANT

	RSEG  ?PR?_?OSInit?OS_CORE
_?OSInit:
	USING	0
			; SOURCE LINE # 85
; {
; #if OS_VERSION >= 204
;     OSInitHookBegin();                                           /* Call port specific initialization code   */
			; SOURCE LINE # 88
	LCALL	_?OSInitHookBegin
; #endif
; 
;     OS_InitMisc();                                               /* Initialize miscellaneous variables       */
			; SOURCE LINE # 91
	LCALL	_?OS_InitMisc
; 
;     OS_InitRdyList();                                            /* Initialize the Ready List                */
			; SOURCE LINE # 93
	LCALL	_?OS_InitRdyList
;     OS_InitTCBList();                                            /* Initialize the free list of OS_TCBs      */
			; SOURCE LINE # 94
	LCALL	_?OS_InitTCBList
;     OS_InitEventList();                                          /* Initialize the free list of OS_EVENTs    */
			; SOURCE LINE # 95
	LCALL	_?OS_InitEventList
; 
; #if (OS_VERSION >= 251) && (OS_FLAG_EN > 0) && (OS_MAX_FLAGS > 0)
;     OS_FlagInit();                                               /* Initialize the event flag structures     */
; #endif
; 
; #if (OS_MEM_EN > 0) && (OS_MAX_MEM_PART > 0)
;     OS_MemInit();                                                /* Initialize the memory manager            */
; #endif
; 
; #if (OS_Q_EN > 0) && (OS_MAX_QS > 0)
;     OS_QInit();                                                  /* Initialize the message queue structures  */
; #endif
; 
;     OS_InitTaskIdle();                                           /* Create the Idle Task                     */
			; SOURCE LINE # 109
	LCALL	_?OS_InitTaskIdle
; #if OS_TASK_STAT_EN > 0
;     OS_InitTaskStat();                                           /* Create the Statistic Task                */
; #endif
; 
; #if OS_VERSION >= 204
;     OSInitHookEnd();                                             /* Call port specific init. code            */
			; SOURCE LINE # 115
	LJMP 	_?OSInitHookEnd
; END OF _?OSInit

; #endif
; }
; /*$PAGE*/
; /*
; *********************************************************************************************************
; *                                              ENTER ISR
; *
; * Description: This function is used to notify uC/OS-II that you are about to service an interrupt
; *              service routine (ISR).  This allows uC/OS-II to keep track of interrupt nesting and thus
; *              only perform rescheduling at the last nested ISR.
; *
; * Arguments  : none
; *
; * Returns    : none
; *
; * Notes      : 1) This function should be called ith interrupts already disabled
; *              2) Your ISR can directly increment OSIntNesting without calling this function because
; *                 OSIntNesting has been declared 'global'.  
; *              3) You MUST still call OSIntExit() even though you increment OSIntNesting directly.
; *              4) You MUST invoke OSIntEnter() and OSIntExit() in pair.  In other words, for every call
; *                 to OSIntEnter() at the beginning of the ISR you MUST have a call to OSIntExit() at the
; *                 end of the ISR.
; *              5) You are allowed to nest interrupts up to 255 levels deep.
; *              6) I removed the OS_ENTER_CRITICAL() and OS_EXIT_CRITICAL() around the increment because
; *                 OSIntEnter() is always called with interrupts disabled.
; *********************************************************************************************************
; */
; 
; void  OSIntEnter (void) LG_REENTRANT

	RSEG  ?PR?_?OSIntEnter?OS_CORE
_?OSIntEnter:
			; SOURCE LINE # 144
; {
;     if (OSRunning == TRUE) {
			; SOURCE LINE # 146
	JNB  	OSRunning,?C0004
;         if (OSIntNesting < 255) {
			; SOURCE LINE # 147
	MOV  	DPTR,#OSIntNesting
	MOVX 	A,@DPTR
	CLR  	C
	SUBB 	A,#0FFH
	JNC  	?C0004
;             OSIntNesting++;                      /* Increment ISR nesting level                        */
			; SOURCE LINE # 148
	MOVX 	A,@DPTR
	INC  	A
	MOVX 	@DPTR,A
;         }
			; SOURCE LINE # 149
;     }
			; SOURCE LINE # 150
; }
			; SOURCE LINE # 151
?C0004:
	RET  	
; END OF _?OSIntEnter

; /*$PAGE*/
; /*
; *********************************************************************************************************
; *                                               EXIT ISR
; *
; * Description: This function is used to notify uC/OS-II that you have completed serviving an ISR.  When
; *              the last nested ISR has completed, uC/OS-II will call the scheduler to determine whether
; *              a new, high-priority task, is ready to run.
; *
; * Arguments  : none
; *
; * Returns    : none
; *
; * Notes      : 1) You MUST invoke OSIntEnter() and OSIntExit() in pair.  In other words, for every call
; *                 to OSIntEnter() at the beginning of the ISR you MUST have a call to OSIntExit() at the
; *                 end of the ISR.
; *              2) Rescheduling is prevented when the scheduler is locked (see OS_SchedLock())
; *********************************************************************************************************
; */
; 
; void  OSIntExit (void) LG_REENTRANT

	RSEG  ?PR?_?OSIntExit?OS_CORE
_?OSIntExit:
	USING	0
			; SOURCE LINE # 172
; {
; #if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
;     OS_CPU_SR  cpu_sr;
; #endif
;     
;     
;     if (OSRunning == TRUE) {
			; SOURCE LINE # 179
	JB   	OSRunning,$ + 6H
	LJMP 	?C0009
;         OS_ENTER_CRITICAL();
			; SOURCE LINE # 180
	CLR  	EA
;         if (OSIntNesting > 0) {                            /* Prevent OSIntNesting from wrapping       */
			; SOURCE LINE # 181
	MOV  	DPTR,#OSIntNesting
	MOVX 	A,@DPTR
	SETB 	C
	SUBB 	A,#00H
	JC   	?C0006
;             OSIntNesting--;
			; SOURCE LINE # 182
	MOVX 	A,@DPTR
	DEC  	A
	MOVX 	@DPTR,A
;         }
			; SOURCE LINE # 183
?C0006:
;         if ((OSIntNesting == 0) && (OSLockNesting == 0)) { /* Reschedule only if all ISRs complete ... */
			; SOURCE LINE # 184
	MOV  	DPTR,#OSIntNesting
	MOVX 	A,@DPTR
	JNZ  	?C0007
	MOV  	DPTR,#OSLockNesting
	MOVX 	A,@DPTR
	JNZ  	?C0007
;             OSIntExitY    = OSUnMapTbl[OSRdyGrp];          /* ... and not locked.                      */
			; SOURCE LINE # 185
	MOV  	DPTR,#OSRdyGrp
	MOVX 	A,@DPTR
	ADD  	A,#LOW (OSUnMapTbl)
	MOV  	DPL,A
	CLR  	A
	ADDC 	A,#HIGH (OSUnMapTbl)
	MOV  	DPH,A
	MOVX 	A,@DPTR
	MOV  	DPTR,#OSIntExitY
	MOVX 	@DPTR,A
;             OSPrioHighRdy = (INT8U)((OSIntExitY << 3) + OSUnMapTbl[OSRdyTbl[OSIntExitY]]);
			; SOURCE LINE # 186
	MOVX 	A,@DPTR
	MOV  	R7,A
	ADD  	A,#LOW (OSRdyTbl)
	MOV  	DPL,A
	CLR  	A
	ADDC 	A,#HIGH (OSRdyTbl)
	MOV  	DPH,A
	MOVX 	A,@DPTR
	ADD  	A,#LOW (OSUnMapTbl)
	MOV  	DPL,A
	CLR  	A
	ADDC 	A,#HIGH (OSUnMapTbl)
	MOV  	DPH,A
	MOVX 	A,@DPTR
	MOV  	R6,A
	MOV  	A,R7
	RLC  	A
	RLC  	A
	RLC  	A
	ANL  	A,#0F8H
	MOV  	R7,A
	MOV  	A,R6
	ADD  	A,R7
	MOV  	R7,A
	MOV  	DPTR,#OSPrioHighRdy
	MOVX 	@DPTR,A
;             if (OSPrioHighRdy != OSPrioCur) {              /* No Ctx Sw if current task is highest rdy */
			; SOURCE LINE # 187
	MOV  	DPTR,#OSPrioCur
	MOVX 	A,@DPTR
	XRL  	A,R7
	JZ   	?C0007
;                 OSTCBHighRdy  = OSTCBPrioTbl[OSPrioHighRdy];
			; SOURCE LINE # 188
	MOV  	DPTR,#OSPrioHighRdy
	MOVX 	A,@DPTR
	MOV  	B,#03H
	MUL  	AB
	ADD  	A,#LOW (OSTCBPrioTbl)
	MOV  	DPL,A
	CLR  	A
	ADDC 	A,#HIGH (OSTCBPrioTbl)
	MOV  	DPH,A
	LCALL	?C?PLDXDATA
	MOV  	DPTR,#OSTCBHighRdy
	LCALL	?C?PSTXDATA
;                 OSCtxSwCtr++;                              /* Keep track of the number of ctx switches */
			; SOURCE LINE # 189
	MOV  	DPTR,#OSCtxSwCtr
	LCALL	?C?LLDXDATA
	MOV  	A,R7
	ADD  	A,#01H
	MOV  	R7,A
	CLR  	A
	ADDC 	A,R6
	MOV  	R6,A
	CLR  	A
	ADDC 	A,R5
	MOV  	R5,A
	CLR  	A
	ADDC 	A,R4
	MOV  	R4,A
	MOV  	DPTR,#OSCtxSwCtr
	LCALL	?C?LSTXDATA
;                 OSIntCtxSw();                              /* Perform interrupt level ctx switch       */
			; SOURCE LINE # 190
	LCALL	_?OSIntCtxSw
;             }
			; SOURCE LINE # 191
;         }
			; SOURCE LINE # 192
?C0007:
;         OS_EXIT_CRITICAL();
			; SOURCE LINE # 193
	SETB 	EA
;     }
			; SOURCE LINE # 194
; }
			; SOURCE LINE # 195
?C0009:
	RET  	
; END OF _?OSIntExit

; /*$PAGE*/
; /*
; *********************************************************************************************************
; *                                          PREVENT SCHEDULING
; *
; * Description: This function is used to prevent rescheduling to take place.  This allows your application
; *              to prevent context switches until you are ready to permit context switching.
; *
; * Arguments  : none
; *
; * Returns    : none
; *
; * Notes      : 1) You MUST invoke OSSchedLock() and OSSchedUnlock() in pair.  In other words, for every
; *                 call to OSSchedLock() you MUST have a call to OSSchedUnlock().
; *********************************************************************************************************
; */
; 
; #if OS_SCHED_LOCK_EN > 0
; void  OSSchedLock (void) LG_REENTRANT
; {
; #if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
;     OS_CPU_SR  cpu_sr;
; #endif    
;     
;     
;     if (OSRunning == TRUE) {                     /* Make sure multitasking is running                  */
;         OS_ENTER_CRITICAL();
;         if (OSLockNesting < 255) {               /* Prevent OSLockNesting from wrapping back to 0      */
;             OSLockNesting++;                     /* Increment lock nesting level                       */
;         }
;         OS_EXIT_CRITICAL();
;     }
; }
; #endif    
; 
; /*$PAGE*/
; /*
; *********************************************************************************************************
; *                                          ENABLE SCHEDULING
; *
; * Description: This function is used to re-allow rescheduling.
; *
; * Arguments  : none
; *
; * Returns    : none
; *
; * Notes      : 1) You MUST invoke OSSchedLock() and OSSchedUnlock() in pair.  In other words, for every
; *                 call to OSSchedLock() you MUST have a call to OSSchedUnlock().
; *********************************************************************************************************
; */
; 
; #if OS_SCHED_LOCK_EN > 0
; void  OSSchedUnlock (void) LG_REENTRANT
; {
; #if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
;     OS_CPU_SR  cpu_sr;
; #endif    
;     
;     
;     if (OSRunning == TRUE) {                                   /* Make sure multitasking is running    */
;         OS_ENTER_CRITICAL();
;         if (OSLockNesting > 0) {                               /* Do not decrement if already 0        */
;             OSLockNesting--;                                   /* Decrement lock nesting level         */
;             if ((OSLockNesting == 0) && (OSIntNesting == 0)) { /* See if sched. enabled and not an ISR */
;                 OS_EXIT_CRITICAL();
;                 OS_Sched();                                    /* See if a HPT is ready                */
;             } else {
;                 OS_EXIT_CRITICAL();
;             }
;         } else {
;             OS_EXIT_CRITICAL();
;         }
;     }
; }
; #endif    
; 
; /*$PAGE*/
; /*
; *********************************************************************************************************
; *                                          START MULTITASKING
; *
; * Description: This function is used to start the multitasking process which lets uC/OS-II manages the
; *              task that you have created.  Before you can call OSStart(), you MUST have called OSInit()
; *              and you MUST have created at least one task.
; *
; * Arguments  : none
; *
; * Returns    : none
; *
; * Note       : OSStartHighRdy() MUST:
; *                 a) Call OSTaskSwHook() then,
; *                 b) Set OSRunning to TRUE.
; *                 c) Load the context of the task pointed to by OSTCBHighRdy.
; *                 d_ Execute the task.
; *********************************************************************************************************
; */
; 
; void  OSStart (void) LG_REENTRANT

	RSEG  ?PR?_?OSStart?OS_CORE
_?OSStart:
	USING	0
			; SOURCE LINE # 293
	MOV  	DPTR,#0FFFEH
	LCALL	?C?ADDXBP
; {
;     INT8U y;
;     INT8U x;
; 
;     if (OSRunning == FALSE) {
			; SOURCE LINE # 298
	JB   	OSRunning,?C0011
;         y             = OSUnMapTbl[OSRdyGrp];        /* Find highest priority's task priority number   */
			; SOURCE LINE # 299
	MOV  	DPTR,#OSRdyGrp
	MOVX 	A,@DPTR
	ADD  	A,#LOW (OSUnMapTbl)
	MOV  	DPL,A
	CLR  	A
	ADDC 	A,#HIGH (OSUnMapTbl)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -