예제 #1
0
파일: main.c 프로젝트: aithon/aithon
void sendResponse(uint8_t command, uint8_t response)
{
   sdPut(_interface, response|command);
}
예제 #2
0
파일: main.c 프로젝트: Koensw/Robot-PWS
static void print(char *p) {

  while (*p) {
    sdPut(&SD2, *p++);
  }
}
예제 #3
0
파일: main.c 프로젝트: rasmartins/fbv2kpa
static void
uart_write(void* object, uint8_t byte)
{
  SerialDriver* sd = (SerialDriver*)object;
  sdPut(sd, byte);
}