Browse Source

Merge branch 'master' of

https://github.com/WiringPi/WiringPi into WiringPi-master
pull/157/head^2
Jim Parziale 2 years ago
parent
commit
23a4d0b3a7
4 changed files with 3 additions and 3 deletions
  1. +0
    -0
      debian-template/wiringPi/DEBIAN/postinst
  2. +0
    -0
      debian-template/wiringPi/DEBIAN/postrm
  3. +2
    -2
      wiringPi/drcNet.c
  4. +1
    -1
      wiringPi/wiringPi.h

+ 0
- 0
debian-template/wiringPi/DEBIAN/postinst View File


+ 0
- 0
debian-template/wiringPi/DEBIAN/postrm View File


+ 2
- 2
wiringPi/drcNet.c View File

@@ -76,12 +76,12 @@ static int remoteReadline (int fd, char *buf, int max)


static char *getChallenge (int fd) static char *getChallenge (int fd)
{ {
static char buf [1024] ;
static char buf [512] ;
int num ; int num ;


for (;;) for (;;)
{ {
if ((num = remoteReadline (fd, buf, 1023)) < 0)
if ((num = remoteReadline (fd, buf, 511)) < 0)
return NULL ; return NULL ;
buf [num] = 0 ; buf [num] = 0 ;




+ 1
- 1
wiringPi/wiringPi.h View File

@@ -121,7 +121,7 @@
#define PI_MAKER_STADIUM 5 #define PI_MAKER_STADIUM 5


extern const char *piModelNames [21] ; extern const char *piModelNames [21] ;
extern const char *piRevisionNames [21] ;
extern const char *piRevisionNames [16] ;
extern const char *piMakerNames [16] ; extern const char *piMakerNames [16] ;
extern const int piMemorySize [ 8] ; extern const int piMemorySize [ 8] ;




Loading…
Cancel
Save