osd-contiki/cpu/mc1322x
Simon Duquennoy bb5e5d5c6b TSCH: use RTIMER_CLOCK_DIFF to compute estimated drift, fixing a bug that would occur on 16-bit rtimer platforms 2016-04-27 14:13:33 +02:00
..
board Merge branch 'master' of git://git.devl.org/git/malvira/libmc1322x into bump-libmc1322x 2012-11-18 18:27:39 -05:00
dev remove cvs keywords from cpu/mc1322x 2011-02-17 14:36:55 -05:00
doc mc1322x: remove rest tutorial 2015-05-14 17:20:46 -04:00
lib Merge pull request #1344 from tsparber/fix-doxygen 2015-11-30 22:07:15 +01:00
src Merge branch 'master' of git://git.devl.org/git/malvira/libmc1322x into bump-libmc1322x 2012-11-18 18:27:39 -05:00
tests 'free_packet' in csma.c conflicted with 'free_packet' in maca.c 2014-08-04 01:09:57 -07:00
tools Merge branch 'master' of git://git.devl.org/git/malvira/libmc1322x into bump-libmc1322x 2012-11-18 18:27:39 -05:00
.gitignore Merge branch 'libmc13-9f82e068' into update-libmc1322x 2011-02-17 14:39:20 -05:00
COPYING Merge remote branch 'libmc1322x/master' into update-libmc1322x 2011-02-17 14:41:47 -05:00
CREDITS initial mc1322x commit 2010-06-09 14:43:22 +00:00
Makefile.include Merge branch 'libmc13-9f82e068' into update-libmc1322x 2011-02-17 14:39:20 -05:00
Makefile.mc1322x Add a rule for generating assembly listings on mc1322x targets, for example: "make webserver6.lst". 2013-12-01 16:22:37 -05:00
README.md Rename to md 2013-03-26 23:15:37 +01:00
README.subtree.md Rename to md 2013-03-26 23:15:37 +01:00
TODO initial mc1322x commit 2010-06-09 14:43:22 +00:00
clock.c Merge pull request #685 from SmallLars/mc1322x 2015-09-13 12:35:53 -05:00
config.c Updated include paths for the moved files under net/ 2014-01-26 23:20:23 +01:00
config.h Newer and cleaner TARGET=econotag as well as robust mc13224v 2012-11-19 19:16:29 -05:00
contiki-maca.c 'free_packet' in csma.c conflicted with 'free_packet' in maca.c 2014-08-04 01:09:57 -07:00
contiki-maca.h remove cvs keywords from cpu/mc1322x 2011-02-17 14:36:55 -05:00
contiki-mc1322x-conf.h TSCH: use RTIMER_CLOCK_DIFF to compute estimated drift, fixing a bug that would occur on 16-bit rtimer platforms 2016-04-27 14:13:33 +02:00
contiki-misc.c remove cvs keywords from cpu/mc1322x 2011-02-17 14:36:55 -05:00
contiki-uart.c remove cvs keywords from cpu/mc1322x 2011-02-17 14:36:55 -05:00
contiki-uart.h remove cvs keywords from cpu/mc1322x 2011-02-17 14:36:55 -05:00
dbg-io.c remove cvs keywords from cpu/mc1322x 2011-02-17 14:36:55 -05:00
debug-uart.c initial mc1322x commit 2010-06-09 14:43:22 +00:00
debug-uart.h A massive all-tree automated update of all double inclusion guard #defines that changes from using two underscores as a prefix, which are reserved, to not using two underscores as a prefix 2013-11-24 20:20:11 +01:00
init.c Updated include paths for the moved files under net/ 2014-01-26 23:20:23 +01:00
io.h add a dummy io.h for mc13224v 2011-02-08 09:07:54 -05:00
leds-arch.c remove cvs keywords from cpu/mc1322x 2011-02-17 14:36:55 -05:00
mc1322x.lds.S run the linker script through CPP so that the stack sizes can be 2013-01-05 17:08:59 -05:00
mtarch.h A massive all-tree automated update of all double inclusion guard #defines that changes from using two underscores as a prefix, which are reserved, to not using two underscores as a prefix 2013-11-24 20:20:11 +01:00
rtimer-arch.c Use the RTC only as the main timer. 2013-02-03 15:15:05 -05:00
rtimer-arch.h A massive all-tree automated update of all double inclusion guard #defines that changes from using two underscores as a prefix, which are reserved, to not using two underscores as a prefix 2013-11-24 20:20:11 +01:00
slip-uart1.c Network layer configuration: replace UIP_CONF_* with NETSTACK_CONF_WITH_* 2014-12-01 21:02:57 +01:00
watchdog.c An implementation of the mc1322x watchdog 2013-11-22 15:54:06 +01:00

README.md

MC1322x

libmc1322x is a library, build system, test code, and utilities for using the mc13224v from Freescale.

Getting Started

cd tests
make

this will build all the test files in libmc1322x/tests for each board defined in libmc1322x/board. You will have programs like:

rftest-tx_redbee-dev.bin rftest-tx_redbee-r1.bin

rftest-rx_redbee-dev.bin rftest-rx_redbee-r1.bin

if you only wanted to build binaries for one board you can do:

make BOARD=redbee-dev

You can use mc1322x-load.pl in libmc1322x/tools to run your code:

../tools/mc1322x-load.pl -f rftest-tx_redbee-dev.bin

Incorporating libmc1322x into your own code

The best way to incorporate libmc1322x into your code is as a git submodule:

mkdir newproject
cd newproject
git init

Initialized empty Git repository in /home/malvira/newproject/.git/

git submodule add git://git.devl.org/git/malvira/libmc1322x.git

This will add libmc1322x to your repository. Now to setup the Makefile:

cp libmc1322x/tests/Makefile .

You need to edit the Makefile to point MC1322X to your libmc1322x submodule:

Change line 1

MC1322X := ..

to

MC1322X := libmc1322x

and edit COBJS and TARGETS accordings. COBJS are all of your common code for any of your programs. TARGETS are the names of your programs.

For instance, you can have a common routine that prints a welcome message that is used by two programs a and b. You would add common.o to COBJS:

COBJS:= common.o

and your target line would read:

TARGETS := a b

COBJS are made for each board so it is ok to have board specific code in there. As an example, tests uses this in tests.c to print the name of the board in the welcome message. You could also use this to change your GPIO mappings between boards.