All Eval Kit and additional information can be found in the Eval Kit Quickstart Guide or in our Developer Tools.
Simple code examples can be found in the Examples folder
Swarm Pass Checker
Swarm Eval Kit Quickstart Video
Activating your Swarm Tile
HIVE Login
Tile Product Manual
API Integration Guide
Q: How do I stop the RSSI-Background from repeating?
A: Send $RT 0*16 via Telnet connection
Q: How do I calculate the checksum?
A: For test you can use the NMEA Checksum Calculator or for integration you can use the following C code found on pg. 34 of the manual.
uint8_t nmeaChecksum (const char *sz, size_t len){
size_t i = 0;
uint8_t cs;
if (sz [0] == '$')
i++;
for (cs = 0; (i < len) && sz [i]; i++)
cs ^= ((uint8_t) sz [i]);
return cs;
}
Q: There are some differences with the POWERON message between the demo tile, and the tile in our card.
$TILE BOOT,POWERON,LPWR=n,WWDG=n,IWDG=n,SFT=Y,BOR=n,PIN=Y,OBL=n,FW=n*4e
vs.
$TILE BOOT,POWERON,LPWR=n,WWDG=n,IWDG=n,SFT=n,BOR=Y,PIN=Y,OBL=n,FW=n*4e
A: SFT=Y/n and BOR=n/Y is for internal debug and can be disregarded. You can ensure your Tile is functioning correctly.
Q: What type of antenna cable due you recommend?
A: We recommend using LMR-240-UF
Email techsupport@swarm.space with any questions!