G4lile0 / tinyGS

📡 Open Ground Station Network 🛰
GNU General Public License v3.0
924 stars 177 forks source link

Error in board template loading #94

Closed funkytorino closed 3 years ago

funkytorino commented 3 years ago

Hello,

line 47 at Radio.cpp, which is transcripted below, was unabling me to initialize radio. The 'aDDR' entry is required according to documentation about custom board templates, but including that OR condition was making the init routine to return without initializing radio. I cant figure out why it is included?

if (error.code() != DeserializationError::Ok || doc.containsKey("aADDR"))

4m1g0 commented 3 years ago

Hello, it's a known issue. It is already fixed on the next release that will be out thankfully tomorrow.

if you want to install it yourself you can do it from this branch. https://github.com/G4lile0/tinyGS/tree/prepare_release

funkytorino commented 3 years ago

Oh, I see. Makes sense know.

Cheers.