CubeCell Board Manager issues V0.0.6 and V0.0.7

Hi All
Am I the only one that get issues wih the board manager released for Cubecell with the new Products. I can use v 0.0.5 but when I use V0.0.6 or V0.0.7 both fail with the following: I am using EU868.keeps giving issues with channel mask

Regards Simon

WARNING: library LoRa claims to run on ASR650x-Arduino architecture(s) and may be incompatible with your current board which runs on CubeCell architecture(s).
WARNING: library Sensor_ThirdParty claims to run on ASR650x-Arduino architecture(s) and may be incompatible with your current board which runs on CubeCell architecture(s).
libraries\LoRa\LoRaWan_APP.cpp.o: In function `lwan_dev_params_update’:

C:\Users\User\AppData\Local\Arduino15\packages\CubeCell\hardware\CubeCell\0.0.7\libraries\LoRa\src/LoRaWan_APP.cpp:436: undefined reference to `userChannelsMask’

C:\Users\User\AppData\Local\Arduino15\packages\CubeCell\hardware\CubeCell\0.0.7/cores/asr650x/projects/CubeCellLib.a(AT_Command.o): In function `getDevParam’:

D:\lib/AT_Command.c:1241: undefined reference to `userChannelsMask’

C:\Users\User\AppData\Local\Arduino15\packages\CubeCell\hardware\CubeCell\0.0.7/cores/asr650x/projects/CubeCellLib.a(AT_Command.o): In function `onUartEvent’:

D:\lib/AT_Command.c:1082: undefined reference to `userChannelsMask’

C:\Users\User\AppData\Local\Arduino15\packages\CubeCell\hardware\CubeCell\0.0.7/cores/asr650x/projects/CubeCellLib.a(AT_Command.o): In function `printDevParam’:

D:\lib/AT_Command.c:1393: undefined reference to `userChannelsMask’

collect2.exe: error: ld returned 1 exit status

exit status 1
Error compiling for board CubeCell-Board.

Hi

have you defined this in your sources:

/*LoraWan channelsmask, default channels 0-7*/ 
uint16_t userChannelsMask[6]={ 0x00FF,0x0000,0x0000,0x0000,0x0000,0x0000 };

i only use the github version and have no spare pc for test the board manager version right now.

Hi I have not specified this as it is an existing cubecell board sketch. Does this mean all old sketches need to be updated? Previously I have updated the board versions on each new release.
Simon

sometimes new definitions are needed with new library version.
had that before with older versions here.

in know that this is not documented well what is changed and needs attention and what the breaking changes are.
This must be improved

Hi the following fixed my issues as sugested by WASN I added it after the Security credentials

/LoraWan channelsmask, default channels 0-7/
uint16_t userChannelsMask[6]={ 0x00FF,0x0000,0x0000,0x0000,0x0000,0x0000 };
*/

It would be good to put this in to the release notes with the board manager updates for existing sketches as others will no doubt make the same mistake and on the git hub ASR650x Readme.

BR simon