File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ class Twi
147147 uint8_t transmit (const uint8_t * data, uint8_t length);
148148 void attachSlaveRxEvent (void (*function)(uint8_t *, size_t ));
149149 void attachSlaveTxEvent (void (*function)(void ));
150- inline void ICACHE_RAM_ATTR reply (uint8_t ack);
150+ void ICACHE_RAM_ATTR reply (uint8_t ack);
151151 inline void ICACHE_RAM_ATTR stop (void );
152152 inline void ICACHE_RAM_ATTR releaseBus (void );
153153 void enableSlave ();
@@ -501,7 +501,7 @@ void Twi::attachSlaveTxEvent(void (*function)(void))
501501 twi_onSlaveTransmit = function;
502502}
503503
504- inline void ICACHE_RAM_ATTR Twi::reply (uint8_t ack)
504+ void ICACHE_RAM_ATTR Twi::reply (uint8_t ack)
505505{
506506 // transmit master read ready signal, with or without ack
507507 if (ack)
You can’t perform that action at this time.
0 commit comments