git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3083 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2011-06-26 10:44:35 +00:00
parent debe04d68f
commit 9e7ee9a715
1 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@
/* /*
* Parts of this files have been modified in ChibiOS/RT in order to fix * Parts of this files have been modified in ChibiOS/RT in order to fix
* some code quality issues. * some code quality issues and conflicting declarations.
*/ */
/**************************************************************************//** /**************************************************************************//**
@ -612,7 +612,7 @@ static __INLINE void __SEV() { __ASM ("sev"); }
* *
* Return the actual process stack pointer * Return the actual process stack pointer
*/ */
extern uint32_t __get_PSP(void); //extern uint32_t __get_PSP(void);
/** /**
* @brief Set the Process Stack Pointer * @brief Set the Process Stack Pointer
@ -622,7 +622,7 @@ extern uint32_t __get_PSP(void);
* Assign the value ProcessStackPointer to the MSP * Assign the value ProcessStackPointer to the MSP
* (process stack pointer) Cortex processor register * (process stack pointer) Cortex processor register
*/ */
extern void __set_PSP(uint32_t topOfProcStack); //extern void __set_PSP(uint32_t topOfProcStack);
/** /**
* @brief Return the Main Stack Pointer * @brief Return the Main Stack Pointer
@ -632,7 +632,7 @@ extern void __set_PSP(uint32_t topOfProcStack);
* Return the current value of the MSP (main stack pointer) * Return the current value of the MSP (main stack pointer)
* Cortex processor register * Cortex processor register
*/ */
extern uint32_t __get_MSP(void); //extern uint32_t __get_MSP(void);
/** /**
* @brief Set the Main Stack Pointer * @brief Set the Main Stack Pointer
@ -642,7 +642,7 @@ extern uint32_t __get_MSP(void);
* Assign the value mainStackPointer to the MSP * Assign the value mainStackPointer to the MSP
* (main stack pointer) Cortex processor register * (main stack pointer) Cortex processor register
*/ */
extern void __set_MSP(uint32_t topOfMainStack); //extern void __set_MSP(uint32_t topOfMainStack);
/** /**
* @brief Reverse byte order in unsigned short value * @brief Reverse byte order in unsigned short value
@ -652,7 +652,7 @@ extern void __set_MSP(uint32_t topOfMainStack);
* *
* Reverse byte order in unsigned short value * Reverse byte order in unsigned short value
*/ */
extern uint32_t __REV16(uint16_t value); //extern uint32_t __REV16(uint16_t value);