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
147
147
uint8_t transmit (const uint8_t * data, uint8_t length);
148
148
void attachSlaveRxEvent (void (*function)(uint8_t *, size_t ));
149
149
void attachSlaveTxEvent (void (*function)(void ));
150
- inline void ICACHE_RAM_ATTR reply (uint8_t ack);
150
+ void ICACHE_RAM_ATTR reply (uint8_t ack);
151
151
inline void ICACHE_RAM_ATTR stop (void );
152
152
inline void ICACHE_RAM_ATTR releaseBus (void );
153
153
void enableSlave ();
@@ -501,7 +501,7 @@ void Twi::attachSlaveTxEvent(void (*function)(void))
501
501
twi_onSlaveTransmit = function;
502
502
}
503
503
504
- inline void ICACHE_RAM_ATTR Twi::reply (uint8_t ack)
504
+ void ICACHE_RAM_ATTR Twi::reply (uint8_t ack)
505
505
{
506
506
// transmit master read ready signal, with or without ack
507
507
if (ack)
You can’t perform that action at this time.
0 commit comments