osd-contiki/examples/osd/arduino-settingsmanager
Harald Pichler dd84558cd6 set default mcu sleep 2017-09-26 14:59:55 +02:00
..
resources initial upload settingsmanager example 2017-08-31 11:23:55 +02:00
Makefile cleanup code, move shell-merkur to apps/shell; move needed function from extended-rf-api to params 2017-09-12 14:39:38 +02:00
README.md add example and todos 2017-09-20 09:25:22 +02:00
arduino-example.c initial upload settingsmanager example 2017-08-31 11:23:55 +02:00
arduino-merkurbaord.geany work in progress -> rf settings shell 2017-09-05 16:38:55 +02:00
flash.sh initial upload settingsmanager example 2017-08-31 11:23:55 +02:00
project-conf.h set default mcu sleep 2017-09-26 14:59:55 +02:00
run.sh initial upload settingsmanager example 2017-08-31 11:23:55 +02:00
sketch.pde cleanup code 2017-09-20 13:53:32 +02:00

README.md

Arduino shell example

This example start a shell on merkurboard serial0 line. You can change the network parameters and store it in eeprom.

make clean TARGET=osd-merkur-256 flash

start a terminal programm

picocom -c -b 38400 --omap crcrlf /dev/ttyUSB0

? [ENTER]

Available commands: ?: shows this help ccathresholds <threshold: change cca thresholds -91 to -61 dBm (default -77) exit: exit shell help: shows this help kill : stop a specific command killall: stop all running commands macconf : change mac layer 0 -> do nothing; 1 -> Radio allways on null: discard input panid <0xabcd>: change panid (default 0xabcd) quit: exit shell reboot: reboot the system rfchannel : change radio channel (11 - 26) saverfparam <> save radio parameters txpower, channel, panid to eeprom settingsmanager txpower : change transmission power 0 (3dbm, default) to 15 (-17.2dbm)

example merkurboard set rf-parameter:

panid 0xabcd rfchannel 11 saverfparam

example old merkurboard (atmega128rfa1) set rf-parameter:

macconf 1 *) switch power off/on panid 0xabcd rfchannel 11 saverfparam macconf 0 *) switch power off/on


quit picocom, you need to press Ctrl-a , then Ctrl-q

Read eeprom to disk: avrdude -p m256rfr2 -c stk500v2 -P /dev/ttyUSB0 -b 57600 -U eeprom:r:eeprom_img.hex:i Write eeprom to Merkurboard: avrdude -p m256rfr2 -c stk500v2 -P /dev/ttyUSB0 -b 57600 -U eeprom:w:eeprom_img.hex:i

todo:

atmega128rfa1 reboot dont work correct @ fixme

if rfsleep mode, it is not possible to set panid @ fixme (workaround: set macconf 1, power off, power on, panid 0xabcd, saverfparam, set macconf 0, power off, power on)


This example shows that it is now possible to re-use arduino sketches in Contiki. This example documents the necessary magic. Arduino specifies two routines, setup and loop. Before setup is called, the framework initializes hardware. In original Arduino, all this is done in a main function (in C). For contiki we define a process that does the same.

See the documentation file in apps/contiki-compat/README.md