亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? portmacro.h

?? 超好的嵌入式操作系統(tǒng)學(xué)習(xí)代碼
?? H
?? 第 1 頁 / 共 2 頁
字號:
/*This file has been prepared for Doxygen automatic documentation generation.*/
/*! \file *********************************************************************
 *
 * \brief FreeRTOS port header for AVR32 UC3.
 *
 * - Compiler:           GNU GCC for AVR32
 * - Supported devices:  All AVR32 devices can be used.
 * - AppNote:
 *
 * \author               Atmel Corporation: http://www.atmel.com \n
 *                       Support and FAQ: http://support.atmel.no/
 *
 *****************************************************************************/

/*
	FreeRTOS.org V4.5.0 - Copyright (C) 2003-2007 Richard Barry.

	This file is part of the FreeRTOS.org distribution.

	FreeRTOS.org is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.

	FreeRTOS.org is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with FreeRTOS.org; if not, write to the Free Software
	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

	A special exception to the GPL can be applied should you wish to distribute
	a combined work that includes FreeRTOS.org, without being obliged to provide
	the source code for any proprietary components.  See the licensing section
	of http://www.FreeRTOS.org for full details of how and when the exception
	can be applied.

	***************************************************************************
	See http://www.FreeRTOS.org for documentation, latest information, license
	and contact details.  Please ensure to read the configuration and relevant
	port sections of the online documentation.

	Also see http://www.SafeRTOS.com for an IEC 61508 compliant version along
	with commercial development and support options.
	***************************************************************************
*/


#ifndef PORTMACRO_H
#define PORTMACRO_H

/*-----------------------------------------------------------
 * Port specific definitions.
 *
 * The settings in this file configure FreeRTOS correctly for the
 * given hardware and compiler.
 *
 * These settings should not be altered.
 *-----------------------------------------------------------
 */
#include <avr32/io.h>
#include "intc.h"
#include "compiler.h"


/* Type definitions. */
#define portCHAR        char
#define portFLOAT       float
#define portDOUBLE      double
#define portLONG        long
#define portSHORT       short
#define portSTACK_TYPE  unsigned portLONG
#define portBASE_TYPE   portLONG

#define TASK_DELAY_MS(x)   ( (x)        /portTICK_RATE_MS )
#define TASK_DELAY_S(x)    ( (x)*1000   /portTICK_RATE_MS )
#define TASK_DELAY_MIN(x)  ( (x)*60*1000/portTICK_RATE_MS )

#define configTICK_TC_IRQ             ATPASTE2(AVR32_TC_IRQ, configTICK_TC_CHANNEL)

#if( configUSE_16_BIT_TICKS == 1 )
	typedef unsigned portSHORT portTickType;
	#define portMAX_DELAY ( portTickType ) 0xffff
#else
	typedef unsigned portLONG portTickType;
	#define portMAX_DELAY ( portTickType ) 0xffffffff
#endif
/*-----------------------------------------------------------*/

/* Architecture specifics. */
#define portSTACK_GROWTH      ( -1 )
#define portTICK_RATE_MS      ( ( portTickType ) 1000 / configTICK_RATE_HZ )
#define portBYTE_ALIGNMENT    4
#define portNOP()             {__asm__ __volatile__ ("nop");}
/*-----------------------------------------------------------*/


/*-----------------------------------------------------------*/

/* INTC-specific. */
#define DISABLE_ALL_EXCEPTIONS()    Disable_global_exception()
#define ENABLE_ALL_EXCEPTIONS()     Enable_global_exception()

#define DISABLE_ALL_INTERRUPTS()    Disable_global_interrupt()
#define ENABLE_ALL_INTERRUPTS()     Enable_global_interrupt()

#define DISABLE_INT_LEVEL(int_lev)  Disable_interrupt_level(int_lev)
#define ENABLE_INT_LEVEL(int_lev)   Enable_interrupt_level(int_lev)


/*
 * Debug trace.
 * Activated if and only if configDBG is nonzero.
 * Prints a formatted string to stdout.
 * The current source file name and line number are output with a colon before
 * the formatted string.
 * A carriage return and a linefeed are appended to the output.
 * stdout is redirected to the USART configured by configDBG_USART.
 * The parameters are the same as for the standard printf function.
 * There is no return value.
 * SHALL NOT BE CALLED FROM WITHIN AN INTERRUPT as fputs and printf use malloc,
 * which is interrupt-unsafe with the current __malloc_lock and __malloc_unlock.
 */
#if configDBG
#define portDBG_TRACE(...) \
{\
  fputs(__FILE__ ":" ASTRINGZ(__LINE__) ": ", stdout);\
  printf(__VA_ARGS__);\
  fputs("\r\n", stdout);\
}
#else
#define portDBG_TRACE(...)
#endif


/* Critical section management. */
#define portDISABLE_INTERRUPTS()  DISABLE_ALL_INTERRUPTS()
#define portENABLE_INTERRUPTS()   ENABLE_ALL_INTERRUPTS()


extern void vPortEnterCritical( void );
extern void vPortExitCritical( void );

#define portENTER_CRITICAL()      vPortEnterCritical();
#define portEXIT_CRITICAL()       vPortExitCritical();


/* Added as there is no such function in FreeRTOS. */
extern void *pvPortRealloc( void *pv, size_t xSize );
/*-----------------------------------------------------------*/


/*=============================================================================================*/

/*
 * Restore Context for cases other than INTi.
 */
#define portRESTORE_CONTEXT()															\
{																						\
  extern volatile unsigned portLONG ulCriticalNesting;									\
  extern volatile void *volatile pxCurrentTCB;											\
																						\
  __asm__ __volatile__ (																\
    /* Set SP to point to new stack */													\
    "mov     r8, LO(%[pxCurrentTCB])													\n\t"\
    "orh     r8, HI(%[pxCurrentTCB])													\n\t"\
    "ld.w    r0, r8[0]																	\n\t"\
    "ld.w    sp, r0[0]																	\n\t"\
																						\
    /* Restore ulCriticalNesting variable */											\
    "ld.w    r0, sp++																	\n\t"\
    "mov     r8, LO(%[ulCriticalNesting])												\n\t"\
    "orh     r8, HI(%[ulCriticalNesting])												\n\t"\
    "st.w    r8[0], r0																	\n\t"\
																						\
    /* Restore R0..R7 */																\
    "ldm     sp++, r0-r7																\n\t"\
    /* R0-R7 should not be used below this line */										\
    /* Skip PC and SR (will do it at the end) */										\
    "sub     sp, -2*4																	\n\t"\
    /* Restore R8..R12 and LR */														\
    "ldm     sp++, r8-r12, lr															\n\t"\
    /* Restore SR */																	\
    "ld.w    r0, sp[-8*4]\n\t" /* R0 is modified, is restored later. */					\
    "mtsr    %[SR], r0																	\n\t"\
    /* Restore r0 */																	\
    "ld.w    r0, sp[-9*4]																\n\t"\
    /* Restore PC */																	\
    "ld.w    pc, sp[-7*4]" /* Get PC from stack - PC is the 7th register saved */		\
    :																					\
    : [ulCriticalNesting] "i" (&ulCriticalNesting),										\
      [pxCurrentTCB] "i" (&pxCurrentTCB),												\
      [SR] "i" (AVR32_SR)																\
  );																					\
}


/*
 * portSAVE_CONTEXT_INT() and portRESTORE_CONTEXT_INT(): for INT0..3 exceptions.
 * portSAVE_CONTEXT_SCALL() and portRESTORE_CONTEXT_SCALL(): for the scall exception.
 *
 * Had to make different versions because registers saved on the system stack
 * are not the same between INT0..3 exceptions and the scall exception.
 */

// Task context stack layout:
  // R8  (*)
  // R9  (*)
  // R10 (*)
  // R11 (*)
  // R12 (*)
  // R14/LR (*)
  // R15/PC (*)
  // SR (*)
  // R0
  // R1
  // R2
  // R3
  // R4
  // R5
  // R6
  // R7
  // ulCriticalNesting
// (*) automatically done for INT0..INT3, but not for SCALL

/*
 * The ISR used for the scheduler tick depends on whether the cooperative or
 * the preemptive scheduler is being used.
 */
#if configUSE_PREEMPTION == 0

/*
 * portSAVE_CONTEXT_OS_INT() for OS Tick exception.
 */
#define portSAVE_CONTEXT_OS_INT()														\
{																						\
  /* Save R0..R7 */																		\
  __asm__ __volatile__ ("stm     --sp, r0-r7");											\
																						\
  /* With the cooperative scheduler, as there is no context switch by interrupt, */		\
  /* there is also no context save. */													\
}

/*
 * portRESTORE_CONTEXT_OS_INT() for Tick exception.
 */
#define portRESTORE_CONTEXT_OS_INT()													\
{																						\
  __asm__ __volatile__ (																\
    /* Restore R0..R7 */																\
    "ldm     sp++, r0-r7\n\t"															\
																						\
    /* With the cooperative scheduler, as there is no context switch by interrupt, */	\
    /* there is also no context restore. */												\
    "rete"																				\
  );																					\
}

#else

/*
 * portSAVE_CONTEXT_OS_INT() for OS Tick exception.
 */
#define portSAVE_CONTEXT_OS_INT()																	\
{																									\
  extern volatile unsigned portLONG ulCriticalNesting;												\
  extern volatile void *volatile pxCurrentTCB;														\
																									\
  /* When we come here */																			\
  /* Registers R8..R12, LR, PC and SR had already been pushed to system stack */					\
																									\
  __asm__ __volatile__ (																			\
    /* Save R0..R7 */																				\
    "stm     --sp, r0-r7																			\n\t"\
																									\
    /* Save ulCriticalNesting variable  - R0 is overwritten */										\
    "mov     r8, LO(%[ulCriticalNesting])\n\t"														\
    "orh     r8, HI(%[ulCriticalNesting])\n\t"														\
    "ld.w    r0, r8[0]																				\n\t"\
    "st.w    --sp, r0																				\n\t"\
																									\
    /* Check if INT0 or higher were being handled (case where the OS tick interrupted another */	\
    /* interrupt handler (which was of a higher priority level but decided to lower its priority */	\
    /* level and allow other lower interrupt level to occur). */									\
    /* In this case we don't want to do a task switch because we don't know what the stack */		\
    /* currently looks like (we don't know what the interrupted interrupt handler was doing). */	\
    /* Saving SP in pxCurrentTCB and then later restoring it (thinking restoring the task) */		\
    /* will just be restoring the interrupt handler, no way!!! */									\
    /* So, since we won't do a vTaskSwitchContext(), it's of no use to save SP. */					\
    "ld.w    r0, sp[9*4]\n\t" /* Read SR in stack */												\
    "bfextu  r0, r0, 22, 3\n\t" /* Extract the mode bits to R0. */									\
    "cp.w    r0, 1\n\t" /* Compare the mode bits with supervisor mode(b'001) */						\
    "brhi    LABEL_INT_SKIP_SAVE_CONTEXT_%[LINE]													\n\t"\
																									\
    /* Store SP in the first member of the structure pointed to by pxCurrentTCB */					\
    /* NOTE: we don't enter a critical section here because all interrupt handlers */				\
    /* MUST perform a SAVE_CONTEXT/RESTORE_CONTEXT in the same way as */							\
    /* portSAVE_CONTEXT_OS_INT/port_RESTORE_CONTEXT_OS_INT if they call OS functions. */			\
    /* => all interrupt handlers must use portENTER_SWITCHING_ISR/portEXIT_SWITCHING_ISR. */		\
    "mov     r8, LO(%[pxCurrentTCB])\n\t"															\
    "orh     r8, HI(%[pxCurrentTCB])\n\t"															\
    "ld.w    r0, r8[0]\n\t"																			\
    "st.w    r0[0], sp\n"																			\
																									\
    "LABEL_INT_SKIP_SAVE_CONTEXT_%[LINE]:"															\
    :																								\
    : [ulCriticalNesting] "i" (&ulCriticalNesting),													\
      [pxCurrentTCB] "i" (&pxCurrentTCB),															\
      [LINE] "i" (__LINE__)																			\
  );																								\
}

/*
 * portRESTORE_CONTEXT_OS_INT() for Tick exception.
 */
#define portRESTORE_CONTEXT_OS_INT()																\
{																									\
  extern volatile unsigned portLONG ulCriticalNesting;												\
  extern volatile void *volatile pxCurrentTCB;														\
																									\
  /* Check if INT0 or higher were being handled (case where the OS tick interrupted another */		\
  /* interrupt handler (which was of a higher priority level but decided to lower its priority */	\
  /* level and allow other lower interrupt level to occur). */										\
  /* In this case we don't want to do a task switch because we don't know what the stack */			\
  /* currently looks like (we don't know what the interrupted interrupt handler was doing). */		\
  /* Saving SP in pxCurrentTCB and then later restoring it (thinking restoring the task) */			\
  /* will just be restoring the interrupt handler, no way!!! */										\
  __asm__ __volatile__ (																			\
    "ld.w    r0, sp[9*4]\n\t" /* Read SR in stack */												\
    "bfextu  r0, r0, 22, 3\n\t" /* Extract the mode bits to R0. */									\
    "cp.w    r0, 1\n\t" /* Compare the mode bits with supervisor mode(b'001) */						\

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品综合二区| 亚洲国产视频直播| 日本韩国精品一区二区在线观看| 国产欧美日韩精品一区| 欧美综合视频在线观看| 久草中文综合在线| 日韩毛片精品高清免费| 日韩午夜在线观看| 91啪在线观看| 久久99热99| 亚洲美女屁股眼交3| 日韩精品一区二区三区在线| 成人性生交大片| 舔着乳尖日韩一区| 国产精品第13页| 日韩精品一区二| 99re热视频精品| 亚洲成年人影院| 久久精品在线观看| 69av一区二区三区| 91黄视频在线观看| 亚洲va在线va天堂| 国产欧美中文在线| 在线观看亚洲专区| 国产精品自拍毛片| 日韩黄色免费网站| 自拍av一区二区三区| 日韩一区二区精品葵司在线| 92精品国产成人观看免费| 九九国产精品视频| 亚洲欧美激情一区二区| 精品第一国产综合精品aⅴ| 欧美在线观看禁18| 99re66热这里只有精品3直播| 美女一区二区在线观看| 亚洲国产一区二区三区 | 精品成人免费观看| 欧美日韩精品一二三区| av网站免费线看精品| 久久aⅴ国产欧美74aaa| 日韩**一区毛片| 中文字幕一区二区三区蜜月| 欧美一区日韩一区| 日本黄色一区二区| www.av亚洲| 北条麻妃一区二区三区| 国产一区二区美女| 视频一区免费在线观看| 亚洲一区在线观看视频| 国产精品三级久久久久三级| 久久久av毛片精品| 91精品国产91久久久久久最新毛片| 色欧美日韩亚洲| 国产精品99久久久久久久女警 | 中文无字幕一区二区三区| 日韩欧美久久一区| 日韩一区和二区| 日韩一级完整毛片| 91精品国产综合久久精品麻豆| 欧美亚洲一区二区三区四区| 在线日韩一区二区| 欧美视频在线播放| 欧美精品1区2区3区| 91精品国产综合久久精品图片 | 国产欧美日韩久久| 中文字幕亚洲区| 自拍偷拍国产亚洲| 亚洲一二三四久久| 天天操天天色综合| 免费成人深夜小野草| 亚洲一区二区欧美激情| 亚洲成人一区在线| 日本不卡的三区四区五区| 奇米一区二区三区av| 免费成人性网站| 国产一区二区三区免费在线观看| 久久99久久精品| 懂色av一区二区三区免费看| 成人18视频日本| 一本色道a无线码一区v| 欧美日本视频在线| 精品播放一区二区| 自拍偷拍亚洲激情| 三级亚洲高清视频| 国产高清精品久久久久| 91蜜桃婷婷狠狠久久综合9色| 欧美综合视频在线观看| 日韩一区二区免费在线电影| 欧美激情综合网| 一区二区三区中文在线| 老色鬼精品视频在线观看播放| 极品少妇xxxx精品少妇偷拍| 成人爱爱电影网址| 欧美日韩久久不卡| 欧美一区二区三区免费大片| 国产无一区二区| 亚洲麻豆国产自偷在线| 日韩二区在线观看| 国产成人免费视频| 99久免费精品视频在线观看| 91麻豆免费观看| 欧美一区二区视频网站| 欧美激情一区二区三区蜜桃视频| 亚洲人快播电影网| 久久精品久久综合| 一本在线高清不卡dvd| 日韩你懂的在线观看| 亚洲欧美日韩系列| 国产一区二区网址| 欧美日本在线观看| 久久久久九九视频| 亚洲男人的天堂在线观看| 久久精品国产99久久6| 一道本成人在线| 国产欧美日韩不卡免费| 日本vs亚洲vs韩国一区三区 | 国产午夜精品一区二区三区嫩草| 亚洲一区二区三区在线看| 成人性生交大片免费看视频在线| 777久久久精品| 久久久久久久久97黄色工厂| 亚洲大片精品永久免费| 成人黄色在线网站| 日韩精品一区二区三区中文精品| 伊人一区二区三区| 国产成人av一区| 99久久婷婷国产精品综合| 日韩一级成人av| 亚洲私人影院在线观看| 麻豆精品精品国产自在97香蕉| 国产+成+人+亚洲欧洲自线| 欧美一区二区免费观在线| 一区二区三区不卡在线观看| 成人美女在线观看| 久久夜色精品国产噜噜av| 青青草原综合久久大伊人精品 | 一区二区三区日韩在线观看| 国产91精品久久久久久久网曝门| 日韩西西人体444www| 午夜精品福利久久久| 91福利精品第一导航| 亚洲欧美一区二区不卡| 成人精品鲁一区一区二区| 久久精品人人做人人爽人人| 国产在线精品视频| 精品1区2区在线观看| 免费久久精品视频| 日韩欧美国产综合一区| 日欧美一区二区| 欧美四级电影在线观看| 一区二区成人在线视频| 91视频免费看| 亚洲日穴在线视频| 99久久婷婷国产综合精品电影| 自拍偷在线精品自拍偷无码专区| 成人激情动漫在线观看| 中文字幕一区不卡| eeuss影院一区二区三区| 日本一区二区三区电影| 成人免费精品视频| 国产精品视频九色porn| 成人ar影院免费观看视频| 久久久精品天堂| 丰满亚洲少妇av| 久久综合九色综合97婷婷| 免费一级片91| 精品88久久久久88久久久| 国产成人免费高清| 国产精品福利一区二区| 色综合天天视频在线观看| 亚洲尤物在线视频观看| 欧美精品久久一区| 精品一区二区三区视频| 欧美激情在线观看视频免费| www.亚洲在线| 亚洲乱码中文字幕| 欧美一级精品在线| 国产精品一区二区无线| 亚洲欧洲制服丝袜| 欧美精品三级在线观看| 日韩精品午夜视频| 91精品久久久久久蜜臀| 国产精品综合av一区二区国产馆| 欧美韩日一区二区三区| 成人黄色小视频在线观看| 亚洲一区二区三区免费视频| 欧美三级欧美一级| 日韩黄色免费电影| 欧美成人性战久久| av男人天堂一区| 亚洲大片免费看| 国产日韩欧美在线一区| 在线观看亚洲一区| 国产精品私人影院| 欧美视频日韩视频在线观看| 中文字幕的久久| 国产精品66部| 欧美mv和日韩mv国产网站| 欧美aa在线视频| 精品国产髙清在线看国产毛片|