Skip to content

Commit

Permalink
Solved merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
hfedcba committed Jul 3, 2017
2 parents e579655 + 14877fb commit 282a533
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/PhysicalInterfaces/TICC1100.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1125,6 +1125,7 @@ void TICC1100::mainThread()
}
_txMutex.unlock(); //Make sure _txMutex is unlocked

closeGPIO(1);
initDevice();
closeGPIO(1);
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
Expand Down Expand Up @@ -1171,7 +1172,7 @@ void TICC1100::mainThread()
uint8_t firstByte = readRegister(Registers::Enum::FIFO);
std::vector<uint8_t> encodedData = readRegisters(Registers::Enum::FIFO, firstByte + 1); //Read packet + RSSI
std::vector<uint8_t> decodedData(encodedData.size());
if(decodedData.size() > 100)
if(decodedData.size() > 200)
{
if(!_firstPacket)
{
Expand Down

0 comments on commit 282a533

Please sign in to comment.