├── .gitignore ├── LICENSE ├── Makefile.include ├── README.md ├── apps ├── glossy │ ├── Makefile │ ├── config.h │ ├── flash.sh │ ├── flocklab-cc430.xml │ └── glossy-test.c ├── lwb-rapid │ ├── Makefile │ ├── config.h │ ├── flash.sh │ └── lwb-test.c └── lwb │ ├── Makefile │ ├── config.h │ ├── flash.sh │ ├── flocklab-cc430.xml │ └── lwb-test.c ├── core ├── contiki.h ├── dev │ ├── debug-print.c │ ├── debug-print.h │ ├── fram.c │ ├── fram.h │ ├── serial-line.c │ ├── serial-line.h │ └── xmem.h ├── lib │ ├── fifo.h │ ├── list.c │ ├── list.h │ ├── memb.c │ ├── memb.h │ ├── membx.c │ ├── membx.h │ ├── random.c │ ├── random.h │ ├── ringbuf.c │ └── ringbuf.h ├── net │ ├── glossy.h │ ├── lwb.c │ ├── lwb.h │ ├── nullmac.h │ ├── scheduler.h │ ├── scheduler │ │ ├── compress.c │ │ ├── sched-min-delay.c │ │ ├── sched-min-energy.c │ │ └── sched-static.c │ ├── stream.c │ └── stream.h └── sys │ ├── arg.c │ ├── arg.h │ ├── autostart.c │ ├── autostart.h │ ├── cc.h │ ├── energest.c │ ├── energest.h │ ├── etimer.c │ ├── etimer.h │ ├── lc-switch.h │ ├── lc.h │ ├── process.c │ ├── process.h │ ├── pt.h │ ├── timer.c │ └── timer.h ├── doc └── papers │ ├── BoltSenSys15.pdf │ ├── DeploymentSenSys13.pdf │ ├── GlossyIPSN11.pdf │ ├── LWBSenSys12.pdf │ ├── ModelingMASCOTS13.pdf │ └── VirtusSRDS13.pdf ├── mcu ├── cc430 │ ├── adc.c │ ├── adc.h │ ├── clock.c │ ├── clock.h │ ├── contiki-conf.h │ ├── dma.c │ ├── dma.h │ ├── flash.c │ ├── flash.h │ ├── glossy.c │ ├── gpio.h │ ├── nullmac.c │ ├── pmm.c │ ├── pmm.h │ ├── rf1a-SmartRF-settings │ │ ├── 868MHz-2GFSK-175kbps.h │ │ └── 868MHz-2GFSK-250kbps.h │ ├── rf1a-core.h │ ├── rf1a.c │ ├── rf1a.h │ ├── rtimer.c │ ├── spi.c │ ├── uart.c │ ├── usci.h │ └── watchdog.h ├── readme ├── rtimer.h ├── spi.h └── uart.h ├── platform ├── olimex-ccrf │ ├── contiki-cc430-main.c │ └── platform.h └── readme └── tools ├── code-style ├── check-contiki-style ├── contiki-indent ├── indent.pro ├── uncrustify-check-style.sh ├── uncrustify-fix-style.sh └── uncrustify.cfg ├── doxycfg └── makedoc.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/Makefile.include -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/README.md -------------------------------------------------------------------------------- /apps/glossy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/glossy/Makefile -------------------------------------------------------------------------------- /apps/glossy/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/glossy/config.h -------------------------------------------------------------------------------- /apps/glossy/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/glossy/flash.sh -------------------------------------------------------------------------------- /apps/glossy/flocklab-cc430.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/glossy/flocklab-cc430.xml -------------------------------------------------------------------------------- /apps/glossy/glossy-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/glossy/glossy-test.c -------------------------------------------------------------------------------- /apps/lwb-rapid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/lwb-rapid/Makefile -------------------------------------------------------------------------------- /apps/lwb-rapid/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/lwb-rapid/config.h -------------------------------------------------------------------------------- /apps/lwb-rapid/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/lwb-rapid/flash.sh -------------------------------------------------------------------------------- /apps/lwb-rapid/lwb-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/lwb-rapid/lwb-test.c -------------------------------------------------------------------------------- /apps/lwb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/lwb/Makefile -------------------------------------------------------------------------------- /apps/lwb/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/lwb/config.h -------------------------------------------------------------------------------- /apps/lwb/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/lwb/flash.sh -------------------------------------------------------------------------------- /apps/lwb/flocklab-cc430.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/lwb/flocklab-cc430.xml -------------------------------------------------------------------------------- /apps/lwb/lwb-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/apps/lwb/lwb-test.c -------------------------------------------------------------------------------- /core/contiki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/contiki.h -------------------------------------------------------------------------------- /core/dev/debug-print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/dev/debug-print.c -------------------------------------------------------------------------------- /core/dev/debug-print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/dev/debug-print.h -------------------------------------------------------------------------------- /core/dev/fram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/dev/fram.c -------------------------------------------------------------------------------- /core/dev/fram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/dev/fram.h -------------------------------------------------------------------------------- /core/dev/serial-line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/dev/serial-line.c -------------------------------------------------------------------------------- /core/dev/serial-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/dev/serial-line.h -------------------------------------------------------------------------------- /core/dev/xmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/dev/xmem.h -------------------------------------------------------------------------------- /core/lib/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/fifo.h -------------------------------------------------------------------------------- /core/lib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/list.c -------------------------------------------------------------------------------- /core/lib/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/list.h -------------------------------------------------------------------------------- /core/lib/memb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/memb.c -------------------------------------------------------------------------------- /core/lib/memb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/memb.h -------------------------------------------------------------------------------- /core/lib/membx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/membx.c -------------------------------------------------------------------------------- /core/lib/membx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/membx.h -------------------------------------------------------------------------------- /core/lib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/random.c -------------------------------------------------------------------------------- /core/lib/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/random.h -------------------------------------------------------------------------------- /core/lib/ringbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/ringbuf.c -------------------------------------------------------------------------------- /core/lib/ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/lib/ringbuf.h -------------------------------------------------------------------------------- /core/net/glossy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/glossy.h -------------------------------------------------------------------------------- /core/net/lwb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/lwb.c -------------------------------------------------------------------------------- /core/net/lwb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/lwb.h -------------------------------------------------------------------------------- /core/net/nullmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/nullmac.h -------------------------------------------------------------------------------- /core/net/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/scheduler.h -------------------------------------------------------------------------------- /core/net/scheduler/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/scheduler/compress.c -------------------------------------------------------------------------------- /core/net/scheduler/sched-min-delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/scheduler/sched-min-delay.c -------------------------------------------------------------------------------- /core/net/scheduler/sched-min-energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/scheduler/sched-min-energy.c -------------------------------------------------------------------------------- /core/net/scheduler/sched-static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/scheduler/sched-static.c -------------------------------------------------------------------------------- /core/net/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/stream.c -------------------------------------------------------------------------------- /core/net/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/net/stream.h -------------------------------------------------------------------------------- /core/sys/arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/arg.c -------------------------------------------------------------------------------- /core/sys/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/arg.h -------------------------------------------------------------------------------- /core/sys/autostart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/autostart.c -------------------------------------------------------------------------------- /core/sys/autostart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/autostart.h -------------------------------------------------------------------------------- /core/sys/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/cc.h -------------------------------------------------------------------------------- /core/sys/energest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/energest.c -------------------------------------------------------------------------------- /core/sys/energest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/energest.h -------------------------------------------------------------------------------- /core/sys/etimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/etimer.c -------------------------------------------------------------------------------- /core/sys/etimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/etimer.h -------------------------------------------------------------------------------- /core/sys/lc-switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/lc-switch.h -------------------------------------------------------------------------------- /core/sys/lc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/lc.h -------------------------------------------------------------------------------- /core/sys/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/process.c -------------------------------------------------------------------------------- /core/sys/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/process.h -------------------------------------------------------------------------------- /core/sys/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/pt.h -------------------------------------------------------------------------------- /core/sys/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/timer.c -------------------------------------------------------------------------------- /core/sys/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/core/sys/timer.h -------------------------------------------------------------------------------- /doc/papers/BoltSenSys15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/doc/papers/BoltSenSys15.pdf -------------------------------------------------------------------------------- /doc/papers/DeploymentSenSys13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/doc/papers/DeploymentSenSys13.pdf -------------------------------------------------------------------------------- /doc/papers/GlossyIPSN11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/doc/papers/GlossyIPSN11.pdf -------------------------------------------------------------------------------- /doc/papers/LWBSenSys12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/doc/papers/LWBSenSys12.pdf -------------------------------------------------------------------------------- /doc/papers/ModelingMASCOTS13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/doc/papers/ModelingMASCOTS13.pdf -------------------------------------------------------------------------------- /doc/papers/VirtusSRDS13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/doc/papers/VirtusSRDS13.pdf -------------------------------------------------------------------------------- /mcu/cc430/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/adc.c -------------------------------------------------------------------------------- /mcu/cc430/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/adc.h -------------------------------------------------------------------------------- /mcu/cc430/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/clock.c -------------------------------------------------------------------------------- /mcu/cc430/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/clock.h -------------------------------------------------------------------------------- /mcu/cc430/contiki-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/contiki-conf.h -------------------------------------------------------------------------------- /mcu/cc430/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/dma.c -------------------------------------------------------------------------------- /mcu/cc430/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/dma.h -------------------------------------------------------------------------------- /mcu/cc430/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/flash.c -------------------------------------------------------------------------------- /mcu/cc430/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/flash.h -------------------------------------------------------------------------------- /mcu/cc430/glossy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/glossy.c -------------------------------------------------------------------------------- /mcu/cc430/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/gpio.h -------------------------------------------------------------------------------- /mcu/cc430/nullmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/nullmac.c -------------------------------------------------------------------------------- /mcu/cc430/pmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/pmm.c -------------------------------------------------------------------------------- /mcu/cc430/pmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/pmm.h -------------------------------------------------------------------------------- /mcu/cc430/rf1a-SmartRF-settings/868MHz-2GFSK-175kbps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/rf1a-SmartRF-settings/868MHz-2GFSK-175kbps.h -------------------------------------------------------------------------------- /mcu/cc430/rf1a-SmartRF-settings/868MHz-2GFSK-250kbps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/rf1a-SmartRF-settings/868MHz-2GFSK-250kbps.h -------------------------------------------------------------------------------- /mcu/cc430/rf1a-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/rf1a-core.h -------------------------------------------------------------------------------- /mcu/cc430/rf1a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/rf1a.c -------------------------------------------------------------------------------- /mcu/cc430/rf1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/rf1a.h -------------------------------------------------------------------------------- /mcu/cc430/rtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/rtimer.c -------------------------------------------------------------------------------- /mcu/cc430/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/spi.c -------------------------------------------------------------------------------- /mcu/cc430/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/uart.c -------------------------------------------------------------------------------- /mcu/cc430/usci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/usci.h -------------------------------------------------------------------------------- /mcu/cc430/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/cc430/watchdog.h -------------------------------------------------------------------------------- /mcu/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/readme -------------------------------------------------------------------------------- /mcu/rtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/rtimer.h -------------------------------------------------------------------------------- /mcu/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/spi.h -------------------------------------------------------------------------------- /mcu/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/mcu/uart.h -------------------------------------------------------------------------------- /platform/olimex-ccrf/contiki-cc430-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/platform/olimex-ccrf/contiki-cc430-main.c -------------------------------------------------------------------------------- /platform/olimex-ccrf/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/platform/olimex-ccrf/platform.h -------------------------------------------------------------------------------- /platform/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/platform/readme -------------------------------------------------------------------------------- /tools/code-style/check-contiki-style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/tools/code-style/check-contiki-style -------------------------------------------------------------------------------- /tools/code-style/contiki-indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/tools/code-style/contiki-indent -------------------------------------------------------------------------------- /tools/code-style/indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/tools/code-style/indent.pro -------------------------------------------------------------------------------- /tools/code-style/uncrustify-check-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/tools/code-style/uncrustify-check-style.sh -------------------------------------------------------------------------------- /tools/code-style/uncrustify-fix-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/tools/code-style/uncrustify-fix-style.sh -------------------------------------------------------------------------------- /tools/code-style/uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/tools/code-style/uncrustify.cfg -------------------------------------------------------------------------------- /tools/doxycfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETHZ-TEC/LWB/HEAD/tools/doxycfg -------------------------------------------------------------------------------- /tools/makedoc.sh: -------------------------------------------------------------------------------- 1 | doxygen doxycfg --------------------------------------------------------------------------------