Skip to content
Enrico Joerns edited this page Aug 29, 2013 · 8 revisions

= Node Configuration =

INGA allows the user to configure some parameters stored in EEPROM.

These are

  • Node ID / Pan Addr
  • Pan ID
  • TX power
  • channel

Settings app

For changing configuration, the INGA platform provides an APP[wiki:app] called settings_set.

To use this app simply add it to your projects Makefile:

APPS = settings_set

Then writing configurations to EEPROM can be done by using the corresponding makefile argument:

Note: It is advised to clean the project and rebuild after changing configuration parameter.

Setting Node ID

Compile with NODE_ID=

make TARGET=inga NODE_ID=<id> inga_demo.upload

where is either a decimal value (e.g. NODE_ID=1267) or hexadecimal (e.g. NODE_ID=0x4711).

Clone this wiki locally