Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
sabas1080 committed Jan 29, 2019
1 parent 1c85fc1 commit c984732
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lora.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ void send(String a)
writeRegister(REG_FIFO_ADDR_PTR, 0);
writeRegister(REG_PAYLOAD_LENGTH, 0);

if( a->getUTF8Data() == 0)return;
if( a->ascii.data[0] == 0)return;
for(int i=0; i<254 ;i++){
intSend = a->ascii.data[i];
if(intSend == 0 && i == 0)return;
Expand Down
4 changes: 2 additions & 2 deletions pxt.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lora",
"version": "0.1.5",
"version": "0.1.6",
"description": "Library for Lora",
"license": "MIT",
"files": [
Expand All @@ -17,4 +17,4 @@
"core": "*"
},
"installedVersion": "workspace:c965dd70-9447-403f-9564-ed88feecfd7d"
}
}

0 comments on commit c984732

Please sign in to comment.