File tree Expand file tree Collapse file tree 4 files changed +2
-5
lines changed Expand file tree Collapse file tree 4 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 1111 "url" : " https://github.com/eigen-value" ,
1212 "maintainer" : true
1313 },
14- "version" : " 0.1.1 " ,
14+ "version" : " 0.1.2 " ,
1515 "license" : " MIT" ,
1616 "frameworks" : " arduino" ,
1717 "platforms" : " *" ,
Original file line number Diff line number Diff line change 11name =Arduino_RPClite
2- version =0.1.1
2+ version =0.1.2
33author =Lucio Rossi (eigen-value)
44maintainer =Lucio Rossi (eigen-value)
55sentence =A MessagePack RPC library for Arduino
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ class RPCClient {
3737
3838 // blocking call
3939 while (!get_response (result)){
40- // delay(1);
4140 }
4241
4342 return (lastError.code == NO_ERR);
Original file line number Diff line number Diff line change @@ -35,13 +35,11 @@ class RPCServer {
3535 get_rpc ();
3636 process_request ();
3737 send_response ();
38- // delay(1);
3938 }
4039
4140 bool get_rpc () {
4241 decoder->decode ();
4342 if (_rpc_size > 0 ) return true ; // Already have a request
44- // TODO USE A QUEUE
4543 _rpc_size = decoder->get_request (_rpc_buffer, RPC_BUFFER_SIZE);
4644 return _rpc_size > 0 ;
4745 }
You can’t perform that action at this time.
0 commit comments