Skip to content

alexbvo/Getting-Started

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 

Repository files navigation

Getting-Started with Swarm Evaluation Kit

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

Additional Helpful Links

Swarm Pass Checker
Swarm Eval Kit Quickstart Video
Activating your Swarm Tile
HIVE Login
Tile Product Manual
API Integration Guide

FAQ

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.

Implementation of NMEA checksum in C

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

Where to find help

Email techsupport@swarm.space with any questions!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 71.5%
  • C++ 20.6%
  • HTML 5.4%
  • C 2.5%