diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-07 21:36:50 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-01-07 21:36:50 +0000 |
commit | 5aa3c4b50591abb89a9800169b1307f0795a00fe (patch) | |
tree | 78e185ea9d5bd6d63c558793e55bb306484c5010 /os/hal/ports/AVR | |
parent | 1206167e18e05276ee8987e3a0934f5e143f8e10 (diff) | |
download | ChibiOS-5aa3c4b50591abb89a9800169b1307f0795a00fe.tar.gz ChibiOS-5aa3c4b50591abb89a9800169b1307f0795a00fe.tar.bz2 ChibiOS-5aa3c4b50591abb89a9800169b1307f0795a00fe.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8718 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/AVR')
-rw-r--r-- | os/hal/ports/AVR/pal_lld.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/AVR/pal_lld.h b/os/hal/ports/AVR/pal_lld.h index b69539ae9..209744c72 100644 --- a/os/hal/ports/AVR/pal_lld.h +++ b/os/hal/ports/AVR/pal_lld.h @@ -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;
|