mirror of https://github.com/joan2937/pigpio
V73: I2C_SLOTS to 512 (from 64)
This commit is contained in:
parent
12a1fc5a2a
commit
da780491d9
2
pigpio.c
2
pigpio.c
|
@ -25,7 +25,7 @@ OTHER DEALINGS IN THE SOFTWARE.
|
||||||
For more information, please refer to <http://unlicense.org/>
|
For more information, please refer to <http://unlicense.org/>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* pigpio version 72 */
|
/* pigpio version 73 */
|
||||||
|
|
||||||
/* include ------------------------------------------------------- */
|
/* include ------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
4
pigpio.h
4
pigpio.h
|
@ -30,7 +30,7 @@ For more information, please refer to <http://unlicense.org/>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
|
||||||
#define PIGPIO_VERSION 72
|
#define PIGPIO_VERSION 73
|
||||||
|
|
||||||
/*TEXT
|
/*TEXT
|
||||||
|
|
||||||
|
@ -702,7 +702,7 @@ typedef void *(gpioThreadFunc_t) (void *);
|
||||||
/* Files, I2C, SPI, SER */
|
/* Files, I2C, SPI, SER */
|
||||||
|
|
||||||
#define PI_FILE_SLOTS 16
|
#define PI_FILE_SLOTS 16
|
||||||
#define PI_I2C_SLOTS 64
|
#define PI_I2C_SLOTS 512
|
||||||
#define PI_SPI_SLOTS 32
|
#define PI_SPI_SLOTS 32
|
||||||
#define PI_SER_SLOTS 16
|
#define PI_SER_SLOTS 16
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue