mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
some dummy files in order to keep folder structure ok when compiling..
removed some comments
This commit is contained in:
parent
475a19b937
commit
5222785d69
4 changed files with 1 additions and 274 deletions
|
@ -53,8 +53,7 @@ void ReceiveCommand(UsbCommand* rxcmd) {
|
|||
byte_t* prx = prxcmd;
|
||||
size_t rxlen;
|
||||
while (true) {
|
||||
rxlen = sizeof(UsbCommand) - (prx-prxcmd);
|
||||
if (uart_receive(sp,prx,&rxlen)) {
|
||||
if (uart_receive(sp, prx, sizeof(UsbCommand) - (prx-prxcmd), &rxlen)) {
|
||||
prx += rxlen;
|
||||
if ((prx-prxcmd) >= sizeof(UsbCommand)) {
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue