diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 14:12:49 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 14:20:15 -0500 |
commit | 796b7ac738bd4eed13af378f76479ed3b9459d29 (patch) | |
tree | 13245f9ed9fd77185d07ff808c3cab21bafa828e /src/avr/spi.c | |
parent | 2a64dfc242039c7ff6a45af8bc29c77af30116b2 (diff) | |
download | kutter-796b7ac738bd4eed13af378f76479ed3b9459d29.tar.gz kutter-796b7ac738bd4eed13af378f76479ed3b9459d29.tar.xz kutter-796b7ac738bd4eed13af378f76479ed3b9459d29.zip |
avr: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/avr/spi.c')
-rw-r--r-- | src/avr/spi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/avr/spi.c b/src/avr/spi.c index 1216ad1b..495e8330 100644 --- a/src/avr/spi.c +++ b/src/avr/spi.c @@ -17,7 +17,9 @@ static const uint8_t MOSI = GPIO('B', 3), MISO = GPIO('B', 4); #elif CONFIG_MACH_atmega644p || CONFIG_MACH_atmega1284p static const uint8_t SS = GPIO('B', 4), SCK = GPIO('B', 7); static const uint8_t MOSI = GPIO('B', 5), MISO = GPIO('B', 6); -#elif CONFIG_MACH_at90usb1286 || CONFIG_MACH_at90usb646 || CONFIG_MACH_atmega32u4 || CONFIG_MACH_atmega1280 || CONFIG_MACH_atmega2560 +#elif CONFIG_MACH_at90usb1286 || CONFIG_MACH_at90usb646 \ + || CONFIG_MACH_atmega32u4 || CONFIG_MACH_atmega1280 \ + || CONFIG_MACH_atmega2560 static const uint8_t SS = GPIO('B', 0), SCK = GPIO('B', 1); static const uint8_t MOSI = GPIO('B', 2), MISO = GPIO('B', 3); #endif |