Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Matěj Sychra committed Oct 16, 2018
1 parent b46c4fd commit bfcbd71
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cores/esp8266/twi.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
/*
twi.h - Software I2C library for esp8266
Copyright (c) 2015 Hristo Gochkov. All rights reserved.
This file is part of the esp8266 core for Arduino environment.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
Expand Down Expand Up @@ -48,7 +48,7 @@ uint8_t twi_status();

uint8_t twi_transmit(const uint8_t*, uint8_t);

void twi_attachSlaveRxEvent( void (*)(uint8_t*, int) );
void twi_attachSlaveRxEvent( void (*)(uint8_t*, size_t) );
void twi_attachSlaveTxEvent( void (*)(void) );
void twi_reply(uint8_t);
//void twi_stop(void);
Expand All @@ -59,4 +59,4 @@ void twi_releaseBus(void);
}
#endif

#endif
#endif

0 comments on commit bfcbd71

Please sign in to comment.