git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8718 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
1206167e18
commit
5aa3c4b505
|
@ -548,7 +548,7 @@ static inline void osalSysUnlockFromISR(void) {
|
|||
*
|
||||
* @xclass
|
||||
*/
|
||||
static inline syssts_t osalSysGetStatusAndLockX(void) {
|
||||
static inline syssts_t osalSysGetStatusAndLockX(void) {
|
||||
|
||||
return chSysGetStatusAndLockX();
|
||||
}
|
||||
|
|
|
@ -664,7 +664,7 @@ static inline void osalSysUnlockFromISR(void) {
|
|||
*
|
||||
* @xclass
|
||||
*/
|
||||
static inline syssts_t osalSysGetStatusAndLockX(void) {
|
||||
static inline syssts_t osalSysGetStatusAndLockX(void) {
|
||||
syssts_t sts;
|
||||
|
||||
#if CORTEX_MODEL == 0
|
||||
|
|
|
@ -539,7 +539,7 @@ static inline void osalSysUnlockFromISR(void) {
|
|||
*
|
||||
* @xclass
|
||||
*/
|
||||
static inline syssts_t osalSysGetStatusAndLockX(void) {
|
||||
static inline syssts_t osalSysGetStatusAndLockX(void) {
|
||||
|
||||
return chSysGetStatusAndLockX();
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
/**
|
||||
* @brief AVR setup registers.
|
||||
*/
|
||||
typedef struct {
|
||||
typedef struct {
|
||||
uint8_t out;
|
||||
uint8_t dir;
|
||||
} avr_gpio_setup_t;
|
||||
|
@ -65,7 +65,7 @@ typedef struct {
|
|||
* ports, the ports with abnormal layout cannot be used through
|
||||
* PAL driver. Example: PORT F on Mega128.
|
||||
*/
|
||||
typedef struct {
|
||||
typedef struct {
|
||||
volatile uint8_t in;
|
||||
volatile uint8_t dir;
|
||||
volatile uint8_t out;
|
||||
|
|
|
@ -561,7 +561,7 @@ static inline void osalSysUnlockFromISR(void) {
|
|||
*
|
||||
* @xclass
|
||||
*/
|
||||
static inline syssts_t osalSysGetStatusAndLockX(void) {
|
||||
static inline syssts_t osalSysGetStatusAndLockX(void) {
|
||||
|
||||
return (syssts_t)0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue