Skip to content

Commit 9aa4fdc

Browse files
committed
Fix astyle check errors
1 parent 9113ede commit 9aa4fdc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libraries/SPI/src/SPI.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,13 @@ class SPIClass {
236236
return &(_spi.handle);
237237
}
238238

239-
void attachSlaveInterrupt(uint8_t pin, callback_function_t callback) {
239+
void attachSlaveInterrupt(uint8_t pin, callback_function_t callback)
240+
{
240241
::attachInterrupt(pin, callback, FALLING);
241242
}
242243

243-
void detachSlaveInterrupt(uint8_t pin) {
244+
void detachSlaveInterrupt(uint8_t pin)
245+
{
244246
::detachInterrupt(pin);
245247
}
246248

0 commit comments

Comments
 (0)