ソースを参照

Merge branch 'develop'

pull/44/head
Thiti Yamsung 8年前
コミット
475ec98d8f
2個のファイルの変更12行の追加0行の削除
  1. +11
    -0
      wiringPi/wiringSerial.c
  2. +1
    -0
      wiringPi/wiringSerial.h

+ 11
- 0
wiringPi/wiringSerial.c ファイルの表示

@@ -159,6 +159,17 @@ void serialPuts (const int fd, const char *s)
}

/*
* serialPuts:
* Send binarys to serial port
*********************************************************************************
*/

void serialPutBin (const int fd, const char *bin, unsigned int size)
{
write (fd, bin, size) ;
}

/*
* serialPrintf:
* Printf over Serial
*********************************************************************************


+ 1
- 0
wiringPi/wiringSerial.h ファイルの表示

@@ -29,6 +29,7 @@ extern void serialClose (const int fd) ;
extern void serialFlush (const int fd) ;
extern void serialPutchar (const int fd, const unsigned char c) ;
extern void serialPuts (const int fd, const char *s) ;
extern void serialPutBin (const int fd, const char *bin, unsigned int size) ;
extern void serialPrintf (const int fd, const char *message, ...) ;
extern int serialDataAvail (const int fd) ;
extern int serialGetchar (const int fd) ;


読み込み中…
キャンセル
保存