mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Fix some more unused-but-set-variable warnings
And autoformat some of the examples
This commit is contained in:
parent
938880b71d
commit
14021813ef
2 changed files with 62 additions and 46 deletions
|
@ -10,7 +10,7 @@
|
|||
USB Usb;
|
||||
//USBHub Hub(&Usb);
|
||||
|
||||
ADK adk(&Usb,"Circuits@Home, ltd.",
|
||||
ADK adk(&Usb, "Circuits@Home, ltd.",
|
||||
"USB Host Shield",
|
||||
"Arduino Terminal for Android",
|
||||
"1.0",
|
||||
|
@ -27,7 +27,7 @@ void setup()
|
|||
|
||||
if (Usb.Init() == -1) {
|
||||
Serial.println("OSCOKIRQ failed to assert");
|
||||
while(1); //halt
|
||||
while (1); //halt
|
||||
}//if (Usb.Init() == -1...
|
||||
}
|
||||
|
||||
|
@ -39,24 +39,32 @@ void loop()
|
|||
|
||||
Usb.Task();
|
||||
|
||||
if( adk.isReady() == false ) {
|
||||
if ( adk.isReady() == false ) {
|
||||
return;
|
||||
}
|
||||
uint16_t len = 64;
|
||||
|
||||
rcode = adk.RcvData(&len, msg);
|
||||
if( rcode & ( rcode != hrNAK )) {
|
||||
if ( rcode & ( rcode != hrNAK )) {
|
||||
USBTRACE2("Data rcv. :", rcode );
|
||||
}
|
||||
if(len > 0) {
|
||||
if (len > 0) {
|
||||
USBTRACE("\r\nData Packet.");
|
||||
|
||||
for( uint8_t i = 0; i < len; i++ ) {
|
||||
for ( uint8_t i = 0; i < len; i++ ) {
|
||||
Serial.print((char)msg[i]);
|
||||
}
|
||||
/* sending back what was received */
|
||||
rcode = adk.SndData( strlen( recv ), (uint8_t *)recv );
|
||||
if (rcode && rcode != hrNAK) {
|
||||
Serial.print(F("\r\nData send: "));
|
||||
Serial.print(rcode, HEX);
|
||||
}
|
||||
rcode = adk.SndData( strlen(( char * )msg ), msg );
|
||||
if (rcode && rcode != hrNAK) {
|
||||
Serial.print(F("\r\nData send: "));
|
||||
Serial.print(rcode, HEX);
|
||||
}
|
||||
|
||||
}//if( len > 0 )...
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
USB Usb;
|
||||
|
||||
ADK adk(&Usb,"Circuits@Home, ltd.",
|
||||
ADK adk(&Usb, "Circuits@Home, ltd.",
|
||||
"USB Host Shield",
|
||||
"Arduino Terminal for Android",
|
||||
"1.0",
|
||||
|
@ -26,7 +26,7 @@ void setup()
|
|||
|
||||
if (Usb.Init() == -1) {
|
||||
Serial.println("OSCOKIRQ failed to assert");
|
||||
while(1); //halt
|
||||
while (1); //halt
|
||||
}//if (Usb.Init() == -1...
|
||||
}
|
||||
|
||||
|
@ -37,14 +37,22 @@ void loop()
|
|||
uint8_t rcode;
|
||||
|
||||
Usb.Task();
|
||||
if( adk.isReady() == false ) {
|
||||
if ( adk.isReady() == false ) {
|
||||
return;
|
||||
}
|
||||
|
||||
ultoa( millis()/1000, (char *)buf, 10 );
|
||||
ultoa( millis() / 1000, (char *)buf, 10 );
|
||||
|
||||
rcode = adk.SndData( strlen((char *)buf), buf );
|
||||
if (rcode && rcode != hrNAK) {
|
||||
Serial.print(F("\r\nData send: "));
|
||||
Serial.print(rcode, HEX);
|
||||
}
|
||||
rcode = adk.SndData( strlen( sec_ela), (uint8_t *)sec_ela );
|
||||
if (rcode && rcode != hrNAK) {
|
||||
Serial.print(F("\r\nData send: "));
|
||||
Serial.print(rcode, HEX);
|
||||
}
|
||||
|
||||
delay( 1000 );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue