git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3083 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
debe04d68f
commit
9e7ee9a715
|
@ -20,7 +20,7 @@
|
|||
|
||||
/*
|
||||
* 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
|
||||
*/
|
||||
extern uint32_t __get_PSP(void);
|
||||
//extern uint32_t __get_PSP(void);
|
||||
|
||||
/**
|
||||
* @brief Set the Process Stack Pointer
|
||||
|
@ -622,7 +622,7 @@ extern uint32_t __get_PSP(void);
|
|||
* Assign the value ProcessStackPointer to the MSP
|
||||
* (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
|
||||
|
@ -632,7 +632,7 @@ extern void __set_PSP(uint32_t topOfProcStack);
|
|||
* Return the current value of the MSP (main stack pointer)
|
||||
* Cortex processor register
|
||||
*/
|
||||
extern uint32_t __get_MSP(void);
|
||||
//extern uint32_t __get_MSP(void);
|
||||
|
||||
/**
|
||||
* @brief Set the Main Stack Pointer
|
||||
|
@ -642,7 +642,7 @@ extern uint32_t __get_MSP(void);
|
|||
* Assign the value mainStackPointer to the MSP
|
||||
* (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
|
||||
|
@ -652,7 +652,7 @@ extern void __set_MSP(uint32_t topOfMainStack);
|
|||
*
|
||||
* Reverse byte order in unsigned short value
|
||||
*/
|
||||
extern uint32_t __REV16(uint16_t value);
|
||||
//extern uint32_t __REV16(uint16_t value);
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue