version ad57538

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

version ad57538

1,322 Views
jim_picariello2
Contributor III

Hi Community,

I am trying to determine which SDK release's I have for K64F and KW41Z on my Rapid IOT proto kit. My version at boot indicates ad57538. How can I determine this?

0 Kudos
3 Replies

1,209 Views
Sebastian_Del_Rio
NXP Employee
NXP Employee

Hi Jim, I hope you're doing well!

 

Could you please show where the "ad57538" version number is showing in your Rapid IOT kit?

Is it in the Out Of Box "Info" application?

 

The latest available SDK releases for the internal K64 and KW41 in the Rapid IOT prototyping kit can be downloaded from this page on our website.

 

Currently, for development we recommend using the online Rapid IOT Studio IDE, as it offers the latest versions of the APIs available for the prototyping kit.

 

Best regards,

Sebastian

0 Kudos

1,209 Views
jim_picariello2
Contributor III

Hi Sebastian,

Doing well, thank you.

Yes, Version is showing in the Out Of Box "Info" application.

Photo, below. Is this the latest or should this be updated?

Jim Picariello

Sr Field Applications Engineer

Arrow Electronics

4 Technology Dr

Peabody MA, 01960

M: (781) 715-5500

Jim.Picariello@Arrow.com

0 Kudos

1,209 Views
Sebastian_Del_Rio
NXP Employee
NXP Employee

Hi Jim,

 

There's a newer available release for the Out Of Box Demo for the Rapid IOT Kit. It can be imported and compiled through the Rapid IOT Studio Online IDE.

 

Currently there's a known issue with the Information page on this release, as a temporary workaround, the GetVersionFunc_trigger can be changed to the following:

ATMO_Status_t GetVersionFunc_trigger(ATMO_Value_t *in, ATMO_Value_t *out) {
char versionStr[64];
ATMO_BLE_MacAddress_t macAddr;
ATMO_BLE_GetMacAddress(0, &macAddr);
 
sprintf(versionStr, "Ver: %s\nBranch: %s\nMac: %02X:%02X:%02X:%02X:%02X:%02X",
"VERSION", ATMO_GLOBALS_GIT_BRANCH, macAddr.data[0],macAddr.data[1],macAddr.data[2],
macAddr.data[3],macAddr.data[4],macAddr.data[5]);
 
ATMO_CreateValueString(out, versionStr);
return ATMO_Status_Success;
}‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍

 

By using the integrated code editor in Rapid IOT Studio.

 

Please let me know if you need any more information.

 

Best regards,

Sebastian

0 Kudos