├── apps ├── dhcp │ ├── dhcp.h │ └── Makefile.dhcp ├── cmdd │ ├── Makefile.cmdd │ └── cmdd.h ├── mqtt │ └── Makefile.mqtt ├── ping6 │ ├── Makefile.ping6 │ └── ping6.h ├── webserver │ └── httpd-fs │ │ ├── footer.html │ │ ├── 404.html │ │ ├── processes.shtml │ │ ├── status.shtml │ │ ├── tcp.shtml │ │ └── upload.html ├── httpd-ws │ └── Makefile.httpd-ws ├── json │ └── Makefile.json ├── at-master │ └── Makefile.at-master ├── unit-test │ └── Makefile.unit-test ├── calc │ └── Makefile.calc ├── rest-engine │ └── Makefile.rest-engine ├── slip-cmd │ └── Makefile.slip-cmd ├── about │ └── Makefile.about ├── servreg-hack │ └── Makefile.servreg-hack ├── webserver-nano │ └── httpd-fs │ │ ├── makefsdata.ignore │ │ ├── ajaxdata.shtml │ │ ├── footer.html │ │ ├── robots.txt │ │ ├── ttt │ │ │ ├── s.css │ │ │ ├── b.gif │ │ │ ├── o.gif │ │ │ ├── x.gif │ │ │ ├── bc.gif │ │ │ ├── bh.gif │ │ │ ├── bv.gif │ │ │ ├── oc.gif │ │ │ ├── oh.gif │ │ │ ├── ov.gif │ │ │ ├── xc.gif │ │ │ ├── xh.gif │ │ │ ├── xv.gif │ │ │ ├── ttt.shtml │ │ │ ├── index.shtml │ │ │ └── index.html │ │ ├── 404.html │ │ ├── index.shtml │ │ ├── favicon.gif │ │ ├── index.html │ │ ├── files.shtml │ │ ├── processes.shtml │ │ ├── upload.html │ │ ├── tcp.shtml │ │ ├── header.html │ │ ├── status.shtml │ │ └── README.makefsdata.md │ │ ├── 404.html │ │ ├── index.shtml │ │ ├── files.shtml │ │ ├── tcp.shtml │ │ └── status.shtml ├── ftp │ └── Makefile.ftp ├── netconf │ └── Makefile.netconf ├── webbrowser │ ├── http-user-agent-string.h │ ├── http-user-agent-string │ ├── Makefile.webbrowser │ └── http-strings ├── program-handler │ └── Makefile.program-handler ├── telnet │ └── Makefile.telnet ├── directory │ └── Makefile.directory ├── http-post-auth │ └── Makefile.http-post-auth ├── process-list │ └── Makefile.process-list ├── irc │ └── Makefile.irc ├── serial-shell │ └── Makefile.serial-shell ├── email │ ├── Makefile.email │ └── smtp-strings ├── ipso-objects │ └── Makefile.ipso-objects ├── telnetd │ └── Makefile.telnetd ├── orchestra │ └── Makefile.orchestra ├── antelope │ └── Makefile.antelope ├── powertrace │ └── Makefile.powertrace ├── codeprop │ └── Makefile.codeprop-tmp ├── collect-view │ ├── Makefile.collect-view │ ├── collect-view-sky.h │ ├── collect-view-z1.h │ └── collect-view-template.c ├── er-coap │ └── Makefile.er-coap └── oma-lwm2m │ └── Makefile.oma-lwm2m ├── platform ├── win32 │ └── conio.h ├── econotag │ ├── apps │ │ ├── ecc │ │ │ └── Makefile.ecc │ │ └── flash │ │ │ └── Makefile.flash │ └── platform_prints.h ├── native │ └── dev │ │ ├── irq.c │ │ ├── pir-sensor.h │ │ └── button-sensor.h ├── avr-raven │ └── apps │ │ ├── raven-webserver │ │ └── httpd-fs │ │ │ ├── footer.html │ │ │ ├── robots.txt │ │ │ ├── sensor.shtml │ │ │ ├── favicon.png │ │ │ ├── 404.html │ │ │ ├── index.html │ │ │ ├── files.shtml │ │ │ ├── upload.html │ │ │ ├── processes.shtml │ │ │ ├── status.shtml │ │ │ └── tcp.shtml │ │ ├── raven-ipso │ │ └── Makefile.raven-ipso │ │ └── raven-lcd-interface │ │ └── Makefile.raven-lcd-interface ├── avr-atmega128rfa1 │ └── apps │ │ ├── raven-webserver │ │ └── httpd-fs │ │ │ ├── footer.html │ │ │ ├── robots.txt │ │ │ ├── sensor.shtml │ │ │ ├── 404.html │ │ │ ├── favicon.png │ │ │ ├── index.html │ │ │ ├── files.shtml │ │ │ ├── upload.html │ │ │ ├── processes.shtml │ │ │ ├── status.shtml │ │ │ └── tcp.shtml │ │ ├── raven-ipso │ │ └── Makefile.raven-ipso │ │ └── raven-lcd-interface │ │ └── Makefile.raven-lcd-interface ├── c128 │ ├── Makefile.customrules-c128 │ └── lib │ │ └── logscr.S ├── c64 │ └── Makefile.customrules-c64 ├── atarixl │ └── Makefile.customrules-atarixl ├── apple2enh │ └── Makefile.customrules-apple2enh ├── cc2530dk │ ├── Makefile.customrules-cc2530dk │ └── segment.rules ├── sky │ ├── dev │ │ └── xmem.c │ └── doc │ │ └── sky.txt ├── stm32test │ └── structgen_opts.gen.h ├── z1 │ ├── dev │ │ └── xmem.c │ ├── Makefile.z1sp │ ├── README.z1sp │ └── Makefile.z1 ├── stm32nucleo-spirit1 │ ├── Makefile.ids01a4 │ └── Makefile.ids01a5 ├── zoul │ ├── firefly │ │ └── Makefile.firefly │ ├── firefly-reva │ │ └── Makefile.firefly-reva │ ├── images │ │ ├── firefly.png │ │ ├── zoul-front.png │ │ ├── firefly-reva.jpg │ │ ├── orion-pinout.png │ │ ├── remote-reva-back.png │ │ ├── zoul-pinout-back.png │ │ ├── orion-router-front.png │ │ ├── remote-reva-front.png │ │ ├── zoul-pinout-front.png │ │ ├── remote-reva-pinout-back.png │ │ ├── remote-reva-pinout-front.png │ │ └── firefly-reva-pinout-front.png │ ├── remote-reva │ │ └── Makefile.remote-reva │ ├── remote-revb │ │ └── Makefile.remote-revb │ └── orion │ │ └── Makefile.orion ├── micaz │ ├── apps │ │ ├── Makefile │ │ └── mts310 │ │ │ └── Makefile │ └── buildscripts │ │ └── Makefile.mib510 ├── wismote │ └── dev │ │ ├── ext-sensor.c │ │ └── ext-sensor.h ├── mbxxx │ └── dev │ │ ├── temperature-sensor.h │ │ └── irq.c ├── avr-ravenlcd │ ├── doc │ │ ├── pics │ │ │ ├── caution.gif │ │ │ ├── raven3290p.jpg │ │ │ └── contiki_menu_3290.jpg │ │ └── Makefile │ └── Makefile.avr-ravenlcd ├── exp5438 │ ├── uart1-putchar.c │ └── port-mapping.txt ├── srf06-cc26xx │ ├── srf06 │ │ ├── cc26xx │ │ │ └── Makefile.cc26xx │ │ ├── cc13xx │ │ │ └── Makefile.cc13xx │ │ └── Makefile.srf06 │ ├── launchpad │ │ ├── cc1310 │ │ │ └── Makefile.cc1310 │ │ ├── cc2650 │ │ │ └── Makefile.cc2650 │ │ ├── Makefile.launchpad │ │ └── cc1350 │ │ │ └── Makefile.cc1350 │ └── sensortag │ │ ├── cc1350 │ │ └── Makefile.cc1350 │ │ └── cc2650 │ │ └── Makefile.cc2650 ├── galileo │ └── bsp │ │ ├── docker │ │ └── Dockerfile │ │ ├── openocd-scripts │ │ └── debug.cfg │ │ └── libc │ │ └── patches │ │ ├── newlib_add_i586_elf.patch │ │ └── large64_files.patch ├── jn516x │ └── dev │ │ └── dongle │ │ └── README.md ├── avr-ravenusb │ └── rng.h └── avr-rss2 │ └── dev │ └── adc.h ├── tools ├── 6502 │ ├── default.cfg │ └── sample.cfg ├── wpcapslip │ └── rtimer-arch.h ├── z80 │ ├── java │ │ ├── .cvsignore │ │ ├── .classpath │ │ └── .project │ └── hex2bin │ │ ├── .cvsignore │ │ └── ihx │ │ ├── suffix.ihx │ │ ├── rom60.ihx │ │ ├── rom62.ihx │ │ ├── mp6.ihx │ │ ├── mode1.ihx │ │ ├── mode2.ihx │ │ └── mode5.ihx ├── jn516x │ ├── motelist_lib │ │ └── __init__.py │ └── JennicModuleProgrammer ├── cooja │ ├── config │ │ ├── external_tools_linux.config │ │ ├── external_tools_freebsd.config │ │ ├── cooja.policy │ │ ├── external_tools_linux_64.config │ │ ├── scripts │ │ │ ├── log_all.js │ │ │ └── helloworld.js │ │ └── cooja.html │ ├── lib │ │ ├── jdom.jar │ │ ├── log4j.jar │ │ ├── jsyntaxpane.jar │ │ ├── swingx-all-1.6.4.jar │ │ └── JSYNTAXPANE_LICENSE │ ├── examples │ │ ├── project_new_radiomedium │ │ │ ├── cooja.config │ │ │ └── java │ │ │ │ └── DummyRadioMedium.java │ │ ├── project_new_plugin │ │ │ └── cooja.config │ │ ├── project_new_interface │ │ │ └── cooja.config │ │ └── jni_test │ │ │ └── mac_users │ │ │ └── nmandsize │ ├── apps │ │ ├── mspsim │ │ │ ├── README.md │ │ │ ├── exp5438.png │ │ │ ├── tyndall.png │ │ │ └── example │ │ │ │ └── helloworld.firmware │ │ ├── mrm │ │ │ ├── images │ │ │ │ └── antenna.png │ │ │ └── cooja.config │ │ ├── avrora │ │ │ ├── lib │ │ │ │ └── avrora-small.jar │ │ │ └── cooja.config │ │ ├── powertracker │ │ │ └── cooja.config │ │ ├── native_gateway │ │ │ └── cooja.config │ │ ├── collect-view │ │ │ └── cooja.config │ │ └── serial_socket │ │ │ └── cooja.config │ └── java │ │ └── org │ │ └── contikios │ │ └── cooja │ │ └── util │ │ └── ScnObservable.java ├── base64-encode ├── c128 │ ├── sample.cfg │ └── default.cfg ├── c64 │ ├── default.cfg │ └── sample.cfg ├── empty-symbols.h ├── atarixl │ ├── sample.cfg │ ├── default.cfg │ ├── dos25 │ │ ├── dos.sys │ │ └── dup.sys │ └── mydos4534 │ │ ├── dos.sys │ │ └── dup.sys ├── cygwin │ └── cygwin1.dll ├── sky │ ├── lib │ │ ├── _sre.pyd │ │ ├── select.pyd │ │ ├── datetime.pyd │ │ ├── w9xpopen.exe │ │ ├── shared-bsl.zip │ │ ├── win32event.pyd │ │ ├── win32file.pyd │ │ └── pywintypes23.dll │ ├── python23.dll │ ├── serialdump-linux │ ├── serialdump-macos │ ├── motelist-windows.exe │ ├── msp430-bsl-windows.exe │ ├── serialdump-windows.exe │ ├── serial │ │ └── Makefile.am │ └── uip6-bridge │ │ └── radvd.conf ├── apple2enh │ ├── prodos.dsk │ ├── prodos.po │ ├── sample.cfg │ ├── default.cfg │ └── menu.system ├── coffee-manager │ ├── MANIFEST.MF │ ├── build.sh │ ├── esb.properties │ └── sky.properties ├── stm32w │ ├── wpcapslip6 │ │ ├── showhiddendevices.bat │ │ ├── rtimer-arch.h │ │ ├── wpcapslip6.exe │ │ └── ip-process.h │ ├── serialdump-linux │ ├── serialdump-windows.exe │ ├── stm32w_flasher │ │ ├── _ssl.pyd │ │ ├── bz2.pyd │ │ ├── FTD2XX.dll │ │ ├── _ctypes.pyd │ │ ├── _socket.pyd │ │ ├── pyexpat.pyd │ │ ├── select.pyd │ │ ├── JlinkARM.DLL │ │ ├── python26.dll │ │ ├── w9xpopen.exe │ │ ├── win32api.pyd │ │ ├── win32pipe.pyd │ │ ├── d2xx._d2xx.pyd │ │ ├── pywintypes26.dll │ │ ├── unicodedata.pyd │ │ ├── stm32w_flasher.exe │ │ └── CompositeForSTM32W.bin │ └── uip6_bridge │ │ └── Makefile ├── code-style │ ├── uncrustify-fix-style.sh │ └── uncrustify-check-style.sh ├── empty-symbols.c ├── collect-view │ ├── collect-init.script │ └── lib │ │ ├── jcommon-1.0.13.jar │ │ └── jfreechart-1.0.10.jar ├── timestamp ├── freebsd-6-setup-slip ├── release-tools │ ├── compile-platforms │ │ └── Makefile.platform │ └── Makefile.sky └── blaster │ ├── Makefile │ └── README ├── cpu ├── 6502 │ ├── ethconfig │ │ ├── Makefile.target │ │ ├── Makefile.c128.defines │ │ ├── Makefile.c64.defines │ │ └── Makefile │ ├── ipconfig │ │ ├── Makefile.target │ │ ├── Makefile.c128.defines │ │ ├── Makefile.apple2enh.defines │ │ ├── Makefile.atarixl.defines │ │ ├── Makefile.c64.defines │ │ └── Makefile │ └── serconfig │ │ ├── Makefile.c128.defines │ │ ├── Makefile.c64.defines │ │ └── Makefile ├── nrf52832 │ ├── erase.jlink │ ├── flash.jlink │ └── ld │ │ ├── nrf52.ld │ │ ├── nrf52-pca10036-sd.ld │ │ └── nrf52-pca10040-sd.ld ├── arm │ ├── at91sam7s │ │ ├── openocd │ │ │ ├── AT91SAM7x_init.script │ │ │ ├── openocd_reset │ │ │ ├── openocd_flash │ │ │ └── arm7_wig.cfg │ │ ├── uip-log.c │ │ ├── merge-rodata.ld │ │ ├── builtins.awk │ │ ├── loader │ │ │ ├── empty-symbols.c │ │ │ └── ram-segments.h │ │ ├── rtimer-arch-interrupt.h │ │ ├── AT91SAM7S128-ROM.ld │ │ ├── AT91SAM7S64-ROM.ld │ │ ├── io.h │ │ ├── startup-SAM7S.c │ │ └── usb-interrupt.h │ ├── stm32l152 │ │ └── lib │ │ │ ├── e_stdio_thumb2.a │ │ │ ├── smallprintf_thumb2.a │ │ │ └── e_stdio_intonly_thumb2.a │ ├── common │ │ ├── usb │ │ │ ├── cdc-acm │ │ │ │ └── cdc-acm.h │ │ │ ├── cdc-eth │ │ │ │ └── cdc-eth.h │ │ │ ├── string-descriptors.dtd │ │ │ └── descriptors.h │ │ ├── dbg-io │ │ │ ├── dbg-puts.c │ │ │ └── dbg-putchar.c │ │ └── SD-card │ │ │ └── Makefile.sdcard │ ├── arm.txt │ ├── openocd │ │ └── arm7_wig.cfg │ └── stm32f103 │ │ └── rtimer-arch.h ├── mc1322x │ ├── tools │ │ ├── rimecollect-rrd │ │ │ └── default.rrdtmpl │ │ ├── ftditools │ │ │ └── Makefile │ │ ├── run-kermit │ │ └── test-grid │ │ │ ├── erase-all.pl │ │ │ ├── reset-all.pl │ │ │ └── load-all.pl │ ├── .gitignore │ ├── doc │ │ ├── adc.gnumeric │ │ ├── mc13224v.img │ │ ├── pow-rssi-lqi.gnumeric │ │ ├── lqi-pdr │ │ │ ├── README.md │ │ │ └── 1000pkt-64len.csv │ │ └── buck │ ├── io.h │ ├── board │ │ └── board.h │ ├── lib │ │ └── Makefile.lib │ ├── debug-uart.c │ ├── CREDITS │ └── TODO ├── cc26xx-cc13xx │ ├── Makefile.cc26xx │ └── Makefile.cc13xx ├── stm32w108 │ ├── e_stdio │ │ └── src │ │ │ ├── test.c │ │ │ └── test-scanf.c │ ├── lib │ │ ├── e_stdio_thumb2.a │ │ ├── smallprintf_thumb2.a │ │ └── e_stdio_intonly_thumb2.a │ ├── simplemac │ │ └── library │ │ │ ├── simplemac-library.a │ │ │ └── simplemac-library-gnu.a │ └── hal │ │ └── micro │ │ └── cortexm3 │ │ └── mpu.h ├── avr │ ├── radio │ │ ├── mac │ │ │ └── Makefile.mac │ │ ├── rf230 │ │ │ └── Makefile.rf230 │ │ ├── rf230bb │ │ │ └── Makefile.rf230bb │ │ └── ieee-manager │ │ │ └── Makefile.ieee-manager │ └── dev │ │ ├── usb │ │ ├── storage │ │ │ └── ctrl_access.c │ │ └── rndis │ │ │ └── cdc_eem.h │ │ ├── flash.h │ │ └── debug.h ├── cc253x │ └── usb │ │ ├── Makefile.usb │ │ └── common │ │ └── descriptors.h └── msp430 │ └── dev │ ├── uart0-putchar.c │ └── uart1-putchar.c ├── examples ├── ip64-router │ ├── project-conf.h │ └── Makefile ├── webserver │ ├── wwwroot.cfg │ ├── Makefile.target │ ├── Makefile.atarixl.defines │ ├── Makefile.c64.defines │ ├── Makefile.apple2enh.defines │ ├── Makefile.c128.defines │ └── httpd-cfs │ │ ├── backgrnd.gif │ │ ├── contiki.gif │ │ └── notfound.htm ├── ftp │ ├── Makefile.target │ ├── Makefile.win32.defines │ ├── Makefile.native.defines │ └── Makefile ├── irc │ ├── Makefile.target │ ├── Makefile.win32.defines │ ├── Makefile.native.defines │ ├── Makefile.atarixl.defines │ ├── Makefile.c64.defines │ ├── Makefile.apple2enh.defines │ ├── Makefile.c128.defines │ └── Makefile ├── sky-ip │ ├── Makefile.target │ └── httpd-fs │ │ ├── sensordata.shtml │ │ ├── footer.html │ │ ├── spin.gif │ │ ├── neighbors.shtml │ │ └── 404.html ├── email │ ├── Makefile.target │ ├── Makefile.native.defines │ ├── Makefile.win32.defines │ └── Makefile ├── sky-shell │ ├── Makefile.target │ └── Makefile ├── cc2530dk │ ├── Makefile.target │ ├── udp-ipv6 │ │ ├── Makefile.target │ │ └── Makefile │ ├── border-router │ │ ├── Makefile.target │ │ └── Makefile │ ├── cc2531-usb-demo │ │ ├── Makefile.target │ │ └── Makefile │ └── Makefile ├── cc2538dk │ ├── Makefile.target │ ├── udp-ipv6-echo-server │ │ ├── Makefile.target │ │ └── Makefile │ └── Makefile ├── cc26xx │ ├── Makefile.target │ ├── cc26xx-web-demo │ │ ├── Makefile.target │ │ └── img │ │ │ ├── 6lbr-web.png │ │ │ ├── coap-resources.png │ │ │ ├── well-known-core.png │ │ │ ├── quickstart-sensortag.png │ │ │ └── sensor-readings-config.png │ ├── very-sleepy-demo │ │ ├── Makefile.target │ │ └── Makefile │ └── Makefile ├── ipv6 │ ├── rpl-udp │ │ └── Makefile.target │ ├── sky-websense │ │ └── Makefile.target │ ├── native-border-router │ │ └── Makefile.target │ ├── simple-udp-rpl │ │ └── Makefile │ ├── multicast │ │ └── Makefile │ ├── slip-radio │ │ └── README.md │ └── rpl-collect │ │ └── Makefile ├── mbxxx │ ├── button │ │ ├── Makefile.target │ │ └── Makefile │ ├── acc-sensor │ │ ├── Makefile.target │ │ └── Makefile │ ├── coffee-test │ │ ├── Makefile.target │ │ └── Makefile │ ├── mbxxx-shell │ │ ├── Makefile.target │ │ └── Makefile │ ├── telnet-server │ │ ├── Makefile.target │ │ └── Makefile │ ├── temperature │ │ ├── Makefile.target │ │ ├── temp-sensor.c │ │ └── Makefile │ ├── mbxxx-websense │ │ ├── Makefile.target │ │ └── README.md │ ├── udp-ipv6-sleep │ │ ├── Makefile.target │ │ └── Makefile │ └── webserver-ajax │ │ ├── Makefile.target │ │ ├── httpd-fs │ │ ├── sensordata.shtml │ │ ├── footer.html │ │ ├── spin.gif │ │ └── 404.html │ │ ├── symbols.h │ │ ├── symbols.c │ │ ├── README.md │ │ └── Makefile ├── udp-ipv6 │ ├── Makefile.target │ └── Makefile ├── webbrowser │ ├── Makefile.target │ ├── Makefile.native.defines │ ├── Makefile.win32.defines │ ├── Makefile.atarixl.defines │ ├── Makefile.c128.defines │ ├── Makefile.c64.defines │ ├── Makefile.apple2enh.defines │ └── Makefile ├── wget │ ├── Makefile.target │ ├── Makefile.atarixl.defines │ ├── Makefile.c64.defines │ ├── Makefile.apple2enh.defines │ ├── Makefile.c128.defines │ └── Makefile ├── zolertia │ ├── zoul │ │ ├── Makefile.target │ │ ├── rev-a │ │ │ ├── Makefile.target │ │ │ └── Makefile │ │ ├── rev-b │ │ │ ├── Makefile.target │ │ │ └── Makefile │ │ ├── rtcc │ │ │ ├── Makefile.target │ │ │ └── Makefile │ │ ├── cc1200-demo │ │ │ ├── Makefile.target │ │ │ └── Makefile │ │ ├── orion │ │ │ ├── ip64-router │ │ │ │ ├── Makefile.target │ │ │ │ └── Makefile │ │ │ └── client │ │ │ │ └── Makefile │ │ └── at-test │ │ │ └── Makefile │ └── z1 │ │ └── ipv6 │ │ └── z1-websense │ │ └── Makefile.target ├── cc2538-common │ ├── Makefile.target │ ├── crypto │ │ ├── Makefile.target │ │ └── Makefile │ ├── pka │ │ ├── Makefile.target │ │ └── Makefile │ ├── mqtt-demo │ │ ├── Makefile.target │ │ └── Makefile │ └── Makefile ├── ping-ipv6 │ ├── Makefile.target │ └── Makefile ├── sensniff │ ├── jn516x │ │ └── Makefile.jn516x │ └── cc2530dk │ │ └── Makefile.cc2530dk ├── sky-shell-webserver │ ├── Makefile.target │ └── Makefile ├── telnet-server │ ├── Makefile.target │ ├── Makefile.c128.defines │ ├── Makefile.atarixl.defines │ ├── Makefile.c64.defines │ ├── Makefile.apple2enh.defines │ └── Makefile ├── irc-80col │ ├── Makefile.native.defines │ ├── Makefile.win32.defines │ ├── Makefile.atarixl.defines │ ├── Makefile.c128.defines │ ├── Makefile.c64.defines │ ├── Makefile.apple2enh.defines │ └── Makefile ├── ravenusbstick │ ├── Makefile.target │ └── Makefile ├── webserver-ipv6-raven │ ├── Huginn │ │ ├── footer.html │ │ ├── robots.txt │ │ ├── sensor.shtml │ │ ├── favicon.png │ │ ├── 404.html │ │ ├── files.shtml │ │ ├── process.shtml │ │ ├── upload.html │ │ ├── tcp.shtml │ │ └── status.shtml │ └── Muninn │ │ ├── footer.html │ │ ├── robots.txt │ │ ├── sensor.shtml │ │ ├── favicon.png │ │ ├── 404.html │ │ ├── files.shtml │ │ ├── process.shtml │ │ ├── upload.html │ │ ├── tcp.shtml │ │ └── status.shtml ├── webserver-ipv6 │ └── Makefile.target ├── fat │ ├── Makefile.target │ ├── README.md │ └── Makefile ├── webbrowser-80col │ ├── Makefile.native.defines │ ├── Makefile.win32.defines │ ├── Makefile.atarixl.defines │ ├── Makefile.c64.defines │ ├── Makefile.apple2enh.defines │ ├── Makefile.c128.defines │ └── Makefile ├── jn516x │ ├── rime │ │ ├── README.md │ │ └── Makefile │ ├── dr1175-sensors │ │ ├── README.md │ │ └── Makefile │ ├── tsch │ │ ├── simple-sensor-network │ │ │ └── rpl-border-router │ │ │ │ └── README.md │ │ └── README.md │ ├── rpl │ │ ├── node │ │ │ └── Makefile │ │ └── border-router │ │ │ └── README.md │ └── README.md ├── websockets │ ├── node │ │ └── Makefile │ └── Makefile ├── tcp-socket │ └── Makefile ├── timers │ └── Makefile ├── hello-world │ └── Makefile ├── http-socket │ └── Makefile ├── econotag-ecc-test │ └── Makefile ├── antelope │ ├── shell │ │ ├── project-conf.h │ │ └── Makefile │ └── netdb │ │ └── Makefile ├── multi-threading │ └── Makefile ├── eeprom-test │ └── Makefile ├── netperf │ └── Makefile ├── trickle-library │ └── Makefile ├── powertrace │ └── Makefile ├── collect │ └── Makefile ├── example-shell │ └── Makefile ├── settings-example │ └── Makefile ├── nrf52dk │ ├── blink-hello │ │ └── Makefile │ ├── timer-test │ │ └── Makefile │ └── mqtt-demo │ │ └── Makefile ├── stm32nucleo-spirit1 │ └── sensor-demo │ │ └── Makefile ├── er-rest-example │ └── in6addr.patch ├── extended-rf-api │ └── Makefile ├── openmote-cc2538 │ ├── Makefile │ └── openmote-demo.gdb ├── econotag-flash-test │ ├── README │ └── econotag-flash-test.cfg ├── rime-tsch │ └── Makefile ├── avr-rss2 │ ├── avr_radio_power │ │ └── Makefile │ ├── hello-sensors │ │ └── README.md │ └── ipv6 │ │ └── sensd_client │ │ ├── Makefile │ │ └── README.md ├── servreg-hack │ └── Makefile ├── udp-stream │ └── Makefile ├── cfs-coffee │ └── Makefile ├── llsec │ └── ccm-star-tests │ │ ├── encryption │ │ └── Makefile │ │ └── verification │ │ └── Makefile ├── rime │ └── Makefile ├── seedeye │ └── powerswitch │ │ └── Makefile ├── er-rest-example-raven │ └── Makefile ├── rf_environment │ └── project-conf.h ├── sky │ └── Makefile └── rssi-scanner │ └── Makefile ├── doc ├── code-style.txt ├── lib.txt ├── mem.txt ├── sys.txt ├── dev.txt ├── net.txt ├── pics │ ├── fcf.jpg │ ├── layers.png │ ├── raven.jpg │ ├── raven.png │ ├── caution.gif │ ├── dataframe.png │ ├── raven3290p.jpg │ ├── raven_detail.jpg │ ├── ravenusb_large.jpg │ ├── ravenusb_medium.jpg │ ├── wireshark_color.png │ ├── contiki_menu_3290.jpg │ ├── ravenusb_shortpins.jpg │ ├── tutorial-raven-basic.jpg │ ├── tutorial-raven-jtag.jpg │ ├── wireshark_explained.png │ ├── tutorial-raven-connections.jpg │ └── ravenusb_network_connections.png ├── rime-doc.txt ├── tutorials.txt └── apps.txt ├── regression-tests ├── 03-base │ ├── Makefile │ └── code │ │ └── Makefile ├── 04-rime │ ├── Makefile │ └── code │ │ └── Makefile ├── 10-ipv4 │ └── Makefile ├── 11-ipv6 │ ├── Makefile │ └── code │ │ ├── receiver │ │ ├── Makefile │ │ └── project-conf.h │ │ └── sender │ │ ├── Makefile │ │ └── project-conf.h ├── 12-rpl │ ├── Makefile │ └── code │ │ └── Makefile ├── 20-ip64 │ └── Makefile ├── 27-tsch │ ├── Makefile │ └── code │ │ └── Makefile ├── 05-netperf │ └── Makefile ├── 06-shell │ └── Makefile ├── 07-elfloader │ └── Makefile ├── 08-collect │ └── Makefile ├── 13-ipv6-apps │ └── Makefile ├── 19-llsec │ └── Makefile ├── 21-large-rpl │ ├── Makefile │ └── code │ │ ├── router │ │ └── Makefile │ │ └── node │ │ ├── Makefile │ │ └── project-conf.h ├── 02-hello-world │ ├── Makefile │ └── hello-world.js ├── 09-collect-lossy │ └── Makefile ├── 17-slip-radio │ ├── Makefile │ └── code │ │ ├── Makefile │ │ └── project-conf.h ├── 25-ieee802154 │ ├── Makefile │ └── js │ │ └── 01-panid-handling.js ├── 23-rpl-non-storing │ ├── Makefile │ └── code │ │ └── Makefile ├── 14-compile-8051-ports │ └── Makefile ├── scan_build │ └── Makefile ├── 15-compile-arm-apcs-ports │ └── Makefile └── 23-compile-avr │ └── Makefile ├── core ├── lib │ └── mmem.h ├── net │ ├── mac │ │ └── tsch │ │ │ └── Makefile.tsch │ └── llsec │ │ └── README.md └── dev │ └── nullradio.h ├── lib └── fs │ └── fat │ └── README.md └── .gitattributes /apps/dhcp/dhcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/win32/conio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/wpcapslip/rtimer-arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/z80/java/.cvsignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /cpu/nrf52832/erase.jlink: -------------------------------------------------------------------------------- 1 | erase 2 | q -------------------------------------------------------------------------------- /examples/ip64-router/project-conf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/jn516x/motelist_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/webserver/wwwroot.cfg: -------------------------------------------------------------------------------- 1 | httpd-cfs/ -------------------------------------------------------------------------------- /tools/6502/default.cfg: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /apps/cmdd/Makefile.cmdd: -------------------------------------------------------------------------------- 1 | cmdd_src = cmdd.c 2 | -------------------------------------------------------------------------------- /apps/mqtt/Makefile.mqtt: -------------------------------------------------------------------------------- 1 | mqtt_src = mqtt.c 2 | -------------------------------------------------------------------------------- /examples/ftp/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = win32 2 | -------------------------------------------------------------------------------- /examples/irc/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = win32 2 | -------------------------------------------------------------------------------- /examples/sky-ip/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = sky 2 | -------------------------------------------------------------------------------- /tools/cooja/config/external_tools_linux.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/z80/hex2bin/.cvsignore: -------------------------------------------------------------------------------- 1 | hexameter.exe 2 | -------------------------------------------------------------------------------- /apps/ping6/Makefile.ping6: -------------------------------------------------------------------------------- 1 | ping6_src = ping6.c 2 | -------------------------------------------------------------------------------- /examples/email/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = win32 2 | -------------------------------------------------------------------------------- /examples/sky-shell/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = sky 2 | -------------------------------------------------------------------------------- /apps/webserver/httpd-fs/footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cpu/6502/ethconfig/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = apple2enh 2 | -------------------------------------------------------------------------------- /cpu/6502/ipconfig/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = apple2enh 2 | -------------------------------------------------------------------------------- /examples/cc2530dk/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2530dk 2 | -------------------------------------------------------------------------------- /examples/cc2538dk/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2538dk 2 | -------------------------------------------------------------------------------- /examples/cc26xx/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = srf06-cc26xx 2 | -------------------------------------------------------------------------------- /examples/ftp/Makefile.win32.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/ipv6/rpl-udp/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = sky 2 | -------------------------------------------------------------------------------- /examples/irc/Makefile.win32.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/mbxxx/button/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = mbxxx 2 | -------------------------------------------------------------------------------- /examples/sky-ip/httpd-fs/sensordata.shtml: -------------------------------------------------------------------------------- 1 | %! sensors 2 | -------------------------------------------------------------------------------- /examples/udp-ipv6/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = minimal-net 2 | -------------------------------------------------------------------------------- /examples/webbrowser/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = win32 2 | -------------------------------------------------------------------------------- /examples/wget/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = minimal-net 2 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = zoul 2 | -------------------------------------------------------------------------------- /apps/httpd-ws/Makefile.httpd-ws: -------------------------------------------------------------------------------- 1 | httpd-ws_src = httpd-ws.c 2 | -------------------------------------------------------------------------------- /apps/json/Makefile.json: -------------------------------------------------------------------------------- 1 | json_src = jsonparse.c jsontree.c 2 | -------------------------------------------------------------------------------- /cpu/6502/ethconfig/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_PFS 2 | -------------------------------------------------------------------------------- /cpu/6502/ethconfig/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_PFS 2 | -------------------------------------------------------------------------------- /cpu/6502/serconfig/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_PFS 2 | -------------------------------------------------------------------------------- /cpu/6502/serconfig/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_PFS 2 | -------------------------------------------------------------------------------- /doc/code-style.txt: -------------------------------------------------------------------------------- 1 | /** 2 | \example code-style.c 3 | */ 4 | -------------------------------------------------------------------------------- /examples/cc2538-common/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2538dk 2 | -------------------------------------------------------------------------------- /examples/email/Makefile.native.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/email/Makefile.win32.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/ftp/Makefile.native.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/ipv6/sky-websense/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = sky 2 | -------------------------------------------------------------------------------- /examples/irc/Makefile.native.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/mbxxx/acc-sensor/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = mbxxx 2 | -------------------------------------------------------------------------------- /examples/mbxxx/coffee-test/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = mbxxx 2 | -------------------------------------------------------------------------------- /examples/mbxxx/mbxxx-shell/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = mbxxx 2 | -------------------------------------------------------------------------------- /examples/mbxxx/telnet-server/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = mbxxx 2 | -------------------------------------------------------------------------------- /examples/mbxxx/temperature/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = mbxxx 2 | -------------------------------------------------------------------------------- /examples/ping-ipv6/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = minimal-net 2 | -------------------------------------------------------------------------------- /examples/sensniff/jn516x/Makefile.jn516x: -------------------------------------------------------------------------------- 1 | BAUDRATE = 1000000 2 | -------------------------------------------------------------------------------- /examples/sky-shell-webserver/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = sky 2 | -------------------------------------------------------------------------------- /examples/telnet-server/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = minimal-net 2 | -------------------------------------------------------------------------------- /examples/webserver/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = minimal-net 2 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/rev-a/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = zoul 2 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/rev-b/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = zoul 2 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/rtcc/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = zoul 2 | -------------------------------------------------------------------------------- /platform/econotag/apps/ecc/Makefile.ecc: -------------------------------------------------------------------------------- 1 | ecc_src = ecc.c 2 | -------------------------------------------------------------------------------- /apps/at-master/Makefile.at-master: -------------------------------------------------------------------------------- 1 | at-master_src = at-master.c 2 | -------------------------------------------------------------------------------- /apps/unit-test/Makefile.unit-test: -------------------------------------------------------------------------------- 1 | unit-test_src = unit-test.c 2 | -------------------------------------------------------------------------------- /cpu/nrf52832/flash.jlink: -------------------------------------------------------------------------------- 1 | loadfile #OUTPUT_FILENAME# 2 | r 3 | g 4 | q -------------------------------------------------------------------------------- /examples/cc2530dk/udp-ipv6/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2530dk 2 | -------------------------------------------------------------------------------- /examples/cc2538-common/crypto/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2538dk 2 | -------------------------------------------------------------------------------- /examples/cc2538-common/pka/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2538dk 2 | -------------------------------------------------------------------------------- /examples/irc-80col/Makefile.native.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/irc-80col/Makefile.win32.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/mbxxx/mbxxx-websense/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = mbxxx 2 | -------------------------------------------------------------------------------- /examples/mbxxx/udp-ipv6-sleep/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = mbxxx 2 | -------------------------------------------------------------------------------- /examples/mbxxx/webserver-ajax/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = mbxxx 2 | -------------------------------------------------------------------------------- /examples/ravenusbstick/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = avr-ravenusb 2 | -------------------------------------------------------------------------------- /examples/sensniff/cc2530dk/Makefile.cc2530dk: -------------------------------------------------------------------------------- 1 | HAVE_BANKING = 1 2 | -------------------------------------------------------------------------------- /examples/webbrowser/Makefile.native.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/webbrowser/Makefile.win32.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/webserver-ipv6/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = minimal-net 2 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/cc1200-demo/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = zoul 2 | -------------------------------------------------------------------------------- /platform/econotag/apps/flash/Makefile.flash: -------------------------------------------------------------------------------- 1 | flash_src = flash.c 2 | -------------------------------------------------------------------------------- /apps/calc/Makefile.calc: -------------------------------------------------------------------------------- 1 | calc_src = calc.c 2 | calc_dsc = calc-dsc.c 3 | -------------------------------------------------------------------------------- /apps/rest-engine/Makefile.rest-engine: -------------------------------------------------------------------------------- 1 | rest-engine_src = rest-engine.c 2 | -------------------------------------------------------------------------------- /apps/slip-cmd/Makefile.slip-cmd: -------------------------------------------------------------------------------- 1 | slip-cmd_src = cmd.c packetutils.c 2 | -------------------------------------------------------------------------------- /examples/cc2530dk/border-router/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2530dk 2 | -------------------------------------------------------------------------------- /examples/cc2530dk/cc2531-usb-demo/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2530dk 2 | -------------------------------------------------------------------------------- /examples/cc2538-common/mqtt-demo/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2538dk 2 | -------------------------------------------------------------------------------- /examples/cc26xx/cc26xx-web-demo/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = srf06-cc26xx 2 | -------------------------------------------------------------------------------- /examples/fat/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = zoul 2 | BOARD ?= remote-revb 3 | -------------------------------------------------------------------------------- /examples/ipv6/native-border-router/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = native 2 | -------------------------------------------------------------------------------- /examples/mbxxx/webserver-ajax/httpd-fs/sensordata.shtml: -------------------------------------------------------------------------------- 1 | %! sensors 2 | -------------------------------------------------------------------------------- /examples/sky-ip/httpd-fs/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/webbrowser-80col/Makefile.native.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/webbrowser-80col/Makefile.win32.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_GUI 2 | -------------------------------------------------------------------------------- /examples/zolertia/z1/ipv6/z1-websense/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = z1 2 | -------------------------------------------------------------------------------- /platform/native/dev/irq.c: -------------------------------------------------------------------------------- 1 | void 2 | irq_init(void) 3 | { 4 | } 5 | 6 | -------------------------------------------------------------------------------- /regression-tests/03-base/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/04-rime/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/10-ipv4/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/11-ipv6/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/12-rpl/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/20-ip64/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/27-tsch/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /tools/cooja/config/external_tools_freebsd.config: -------------------------------------------------------------------------------- 1 | PATH_MAKE = gmake 2 | -------------------------------------------------------------------------------- /tools/z80/hex2bin/ihx/suffix.ihx: -------------------------------------------------------------------------------- 1 | :0c000000000000000000000000000000 2 | -------------------------------------------------------------------------------- /apps/about/Makefile.about: -------------------------------------------------------------------------------- 1 | about_src = about.c 2 | about_dsc = about-dsc.c 3 | -------------------------------------------------------------------------------- /apps/servreg-hack/Makefile.servreg-hack: -------------------------------------------------------------------------------- 1 | servreg-hack_src = servreg-hack.c 2 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ajaxdata.shtml: -------------------------------------------------------------------------------- 1 | %! ajaxdata 2 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/lib.txt: -------------------------------------------------------------------------------- 1 | /** 2 | \defgroup lib Libraries 3 | @{ 4 | */ 5 | /** @} */ 6 | -------------------------------------------------------------------------------- /doc/mem.txt: -------------------------------------------------------------------------------- 1 | /** 2 | \defgroup mem Memory functions 3 | \ingroup lib 4 | */ 5 | -------------------------------------------------------------------------------- /examples/cc2538dk/udp-ipv6-echo-server/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = cc2538dk 2 | -------------------------------------------------------------------------------- /examples/cc26xx/very-sleepy-demo/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = srf06-cc26xx 2 | -------------------------------------------------------------------------------- /examples/jn516x/rime/README.md: -------------------------------------------------------------------------------- 1 | A simple Rime + ContikiMAC code example. 2 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/robots.txt: -------------------------------------------------------------------------------- 1 | user-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/robots.txt: -------------------------------------------------------------------------------- 1 | user-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /examples/zolertia/zoul/orion/ip64-router/Makefile.target: -------------------------------------------------------------------------------- 1 | TARGET = zoul 2 | -------------------------------------------------------------------------------- /regression-tests/05-netperf/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/06-shell/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/07-elfloader/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/08-collect/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/13-ipv6-apps/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/19-llsec/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/21-large-rpl/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /tools/z80/hex2bin/ihx/rom60.ihx: -------------------------------------------------------------------------------- 1 | :0400000041420440 2 | :02000204ROMEXEC 3 | -------------------------------------------------------------------------------- /tools/z80/hex2bin/ihx/rom62.ihx: -------------------------------------------------------------------------------- 1 | :0400000043440440 2 | :02000204ROMEXEC 3 | -------------------------------------------------------------------------------- /apps/dhcp/Makefile.dhcp: -------------------------------------------------------------------------------- 1 | dhcp_src = dhcp.c dhcpc.c 2 | dhcp_dsc = dhcp-dsc.c 3 | -------------------------------------------------------------------------------- /apps/ftp/Makefile.ftp: -------------------------------------------------------------------------------- 1 | ftp_src = ftp.c ftpc.c memb.c 2 | ftp_dsc = ftp-dsc.c 3 | -------------------------------------------------------------------------------- /cpu/6502/ipconfig/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_DNS,WITH_GUI,WITH_PFS 2 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/openocd/AT91SAM7x_init.script: -------------------------------------------------------------------------------- 1 | arm7_9 force_hw_bkpts enable 2 | -------------------------------------------------------------------------------- /doc/sys.txt: -------------------------------------------------------------------------------- 1 | /** 2 | \defgroup sys Contiki system 3 | @{ 4 | */ 5 | /** @} */ 6 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regression-tests/02-hello-world/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/09-collect-lossy/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/17-slip-radio/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /regression-tests/25-ieee802154/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/robots.txt: -------------------------------------------------------------------------------- 1 | user-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/s.css: -------------------------------------------------------------------------------- 1 | img{border-style: none;} 2 | -------------------------------------------------------------------------------- /cpu/6502/ipconfig/Makefile.apple2enh.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_DNS,WITH_GUI,WITH_MOUSE 2 | -------------------------------------------------------------------------------- /cpu/6502/ipconfig/Makefile.atarixl.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_DNS,WITH_GUI,WITH_MOUSE 2 | -------------------------------------------------------------------------------- /doc/dev.txt: -------------------------------------------------------------------------------- 1 | /** 2 | \defgroup dev Device driver APIs 3 | @{ 4 | */ 5 | /** @} */ 6 | -------------------------------------------------------------------------------- /doc/net.txt: -------------------------------------------------------------------------------- 1 | /** 2 | \defgroup net Communication stacks 3 | @{ 4 | */ 5 | /** @} */ 6 | -------------------------------------------------------------------------------- /examples/mbxxx/webserver-ajax/httpd-fs/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/robots.txt: -------------------------------------------------------------------------------- 1 | user-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /regression-tests/23-rpl-non-storing/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.simulation-test 2 | -------------------------------------------------------------------------------- /apps/netconf/Makefile.netconf: -------------------------------------------------------------------------------- 1 | netconf_src = netconf.c 2 | netconf_dsc = netconf-dsc.c 3 | -------------------------------------------------------------------------------- /apps/webbrowser/http-user-agent-string.h: -------------------------------------------------------------------------------- 1 | extern const char http_user_agent_fields[78]; 2 | -------------------------------------------------------------------------------- /core/lib/mmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/core/lib/mmem.h -------------------------------------------------------------------------------- /cpu/6502/ipconfig/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_DNS,WITH_GUI,WITH_MOUSE,WITH_PFS 2 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/openocd/openocd_reset: -------------------------------------------------------------------------------- 1 | poll 2 | reset run 3 | sleep 500 4 | shutdown 5 | -------------------------------------------------------------------------------- /doc/pics/fcf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/fcf.jpg -------------------------------------------------------------------------------- /doc/rime-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/rime-doc.txt -------------------------------------------------------------------------------- /examples/irc/Makefile.atarixl.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_MOUSE 2 | -------------------------------------------------------------------------------- /examples/telnet-server/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_LOGGING,WITH_PFS,WITH_80COL 2 | -------------------------------------------------------------------------------- /platform/c128/Makefile.customrules-c128: -------------------------------------------------------------------------------- 1 | include $(CONTIKI_CPU)/Makefile.customrules-6502 2 | -------------------------------------------------------------------------------- /platform/c64/Makefile.customrules-c64: -------------------------------------------------------------------------------- 1 | include $(CONTIKI_CPU)/Makefile.customrules-6502 2 | -------------------------------------------------------------------------------- /apps/program-handler/Makefile.program-handler: -------------------------------------------------------------------------------- 1 | program-handler_src = program-handler.c 2 | 3 | -------------------------------------------------------------------------------- /apps/telnet/Makefile.telnet: -------------------------------------------------------------------------------- 1 | telnet_src = simpletelnet.c telnet.c 2 | telnet_dsc = telnet-dsc.c 3 | -------------------------------------------------------------------------------- /doc/pics/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/layers.png -------------------------------------------------------------------------------- /doc/pics/raven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/raven.jpg -------------------------------------------------------------------------------- /doc/pics/raven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/raven.png -------------------------------------------------------------------------------- /examples/irc/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_MOUSE,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/webserver/Makefile.atarixl.defines: -------------------------------------------------------------------------------- 1 | DEFINES = CONNECTIONS=4,WITH_LOGGING,WITH_BOOST 2 | -------------------------------------------------------------------------------- /examples/wget/Makefile.atarixl.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_ARGS 2 | -------------------------------------------------------------------------------- /platform/atarixl/Makefile.customrules-atarixl: -------------------------------------------------------------------------------- 1 | include $(CONTIKI_CPU)/Makefile.customrules-6502 2 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/robots.txt: -------------------------------------------------------------------------------- 1 | user-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /tools/base64-encode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | perl -MMIME::Base64 -e 'print encode_base64(join("", <>))' 3 | -------------------------------------------------------------------------------- /tools/cooja/config/cooja.policy: -------------------------------------------------------------------------------- 1 | grant { 2 | permission java.security.AllPermission; 3 | }; 4 | -------------------------------------------------------------------------------- /apps/directory/Makefile.directory: -------------------------------------------------------------------------------- 1 | directory_src = directory.c 2 | directory_dsc = directory-dsc.c 3 | -------------------------------------------------------------------------------- /cpu/mc1322x/tools/rimecollect-rrd/default.rrdtmpl: -------------------------------------------------------------------------------- 1 | -s 1 DS:GPIO29:GAUGE:600:U:U RRA:LAST:0.99:1:3600 2 | -------------------------------------------------------------------------------- /doc/pics/caution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/caution.gif -------------------------------------------------------------------------------- /examples/irc/Makefile.apple2enh.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_MOUSE,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/irc/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_PFS,MTU_SIZE=900 2 | -------------------------------------------------------------------------------- /examples/webbrowser/Makefile.atarixl.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_MOUSE 2 | -------------------------------------------------------------------------------- /examples/webserver/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = CONNECTIONS=4,WITH_LOGGING,WITH_BOOST,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/wget/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_PFS,WITH_ARGS 2 | -------------------------------------------------------------------------------- /platform/apple2enh/Makefile.customrules-apple2enh: -------------------------------------------------------------------------------- 1 | include $(CONTIKI_CPU)/Makefile.customrules-6502 2 | -------------------------------------------------------------------------------- /platform/cc2530dk/Makefile.customrules-cc2530dk: -------------------------------------------------------------------------------- 1 | include $(CONTIKI_CPU)/Makefile.customrules-cc253x 2 | -------------------------------------------------------------------------------- /tools/6502/sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/6502/sample.cfg -------------------------------------------------------------------------------- /tools/c128/sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/c128/sample.cfg -------------------------------------------------------------------------------- /tools/c64/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/c64/default.cfg -------------------------------------------------------------------------------- /tools/c64/sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/c64/sample.cfg -------------------------------------------------------------------------------- /tools/empty-symbols.h: -------------------------------------------------------------------------------- 1 | #include "loader/symbols.h" 2 | 3 | extern const struct symbols symbols[1]; 4 | -------------------------------------------------------------------------------- /doc/pics/dataframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/dataframe.png -------------------------------------------------------------------------------- /doc/pics/raven3290p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/raven3290p.jpg -------------------------------------------------------------------------------- /examples/webbrowser/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_PFS,MTU_SIZE=500 2 | -------------------------------------------------------------------------------- /examples/webbrowser/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_MOUSE,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/webserver/Makefile.apple2enh.defines: -------------------------------------------------------------------------------- 1 | DEFINES = CONNECTIONS=4,WITH_LOGGING,WITH_BOOST,WITH_80COL 2 | -------------------------------------------------------------------------------- /platform/sky/dev/xmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/sky/dev/xmem.c -------------------------------------------------------------------------------- /platform/sky/doc/sky.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/sky/doc/sky.txt -------------------------------------------------------------------------------- /platform/stm32test/structgen_opts.gen.h: -------------------------------------------------------------------------------- 1 | #pragma target_endian little 2 | #pragma max_target_int_bytes 8 3 | -------------------------------------------------------------------------------- /platform/z1/dev/xmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/z1/dev/xmem.c -------------------------------------------------------------------------------- /tools/atarixl/sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/atarixl/sample.cfg -------------------------------------------------------------------------------- /tools/c128/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/c128/default.cfg -------------------------------------------------------------------------------- /tools/cooja/lib/jdom.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/lib/jdom.jar -------------------------------------------------------------------------------- /tools/cygwin/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cygwin/cygwin1.dll -------------------------------------------------------------------------------- /tools/sky/lib/_sre.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/lib/_sre.pyd -------------------------------------------------------------------------------- /tools/sky/lib/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/lib/select.pyd -------------------------------------------------------------------------------- /tools/sky/python23.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/python23.dll -------------------------------------------------------------------------------- /apps/http-post-auth/Makefile.http-post-auth: -------------------------------------------------------------------------------- 1 | http-post-auth_src = http-post-auth.c 2 | http-post-auth_dsc = 3 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/404.html: -------------------------------------------------------------------------------- 1 | 404 - file not found - go to index -------------------------------------------------------------------------------- /doc/pics/raven_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/raven_detail.jpg -------------------------------------------------------------------------------- /examples/irc-80col/Makefile.atarixl.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE 2 | -------------------------------------------------------------------------------- /examples/telnet-server/Makefile.atarixl.defines: -------------------------------------------------------------------------------- 1 | DEFINES = CONNECTIONS=3,WITH_LOGGING,WITH_CLIENT,WITH_DNS 2 | -------------------------------------------------------------------------------- /examples/webbrowser/Makefile.apple2enh.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI,WITH_MOUSE,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/webserver/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = CONNECTIONS=4,WITH_LOGGING,WITH_BOOST,WITH_80COL,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/wget/Makefile.apple2enh.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_ARGS 2 | -------------------------------------------------------------------------------- /examples/wget/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_PFS,WITH_ARGS 2 | -------------------------------------------------------------------------------- /platform/stm32nucleo-spirit1/Makefile.ids01a4: -------------------------------------------------------------------------------- 1 | #Simply set the correct flag 2 | CFLAGS += -DX_NUCLEO_IDS01A4 3 | -------------------------------------------------------------------------------- /platform/stm32nucleo-spirit1/Makefile.ids01a5: -------------------------------------------------------------------------------- 1 | #Simply set the correct flag 2 | CFLAGS += -DX_NUCLEO_IDS01A5 3 | -------------------------------------------------------------------------------- /tools/apple2enh/prodos.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/apple2enh/prodos.dsk -------------------------------------------------------------------------------- /tools/apple2enh/prodos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/apple2enh/prodos.po -------------------------------------------------------------------------------- /tools/apple2enh/sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/apple2enh/sample.cfg -------------------------------------------------------------------------------- /tools/atarixl/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/atarixl/default.cfg -------------------------------------------------------------------------------- /tools/coffee-manager/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: org.contikios.coffee.CoffeeManager 3 | -------------------------------------------------------------------------------- /tools/cooja/lib/log4j.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/lib/log4j.jar -------------------------------------------------------------------------------- /tools/sky/lib/datetime.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/lib/datetime.pyd -------------------------------------------------------------------------------- /tools/sky/lib/w9xpopen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/lib/w9xpopen.exe -------------------------------------------------------------------------------- /tools/sky/serialdump-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/serialdump-linux -------------------------------------------------------------------------------- /tools/sky/serialdump-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/serialdump-macos -------------------------------------------------------------------------------- /tools/stm32w/wpcapslip6/showhiddendevices.bat: -------------------------------------------------------------------------------- 1 | set devmgr_show_nonpresent_devices=1 2 | 3 | start devmgmt.msc 4 | -------------------------------------------------------------------------------- /cpu/mc1322x/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.d 3 | *.s 4 | *.a 5 | *.elf 6 | *.bin 7 | *.map 8 | tests/obj_* 9 | 10 | -------------------------------------------------------------------------------- /cpu/mc1322x/doc/adc.gnumeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/mc1322x/doc/adc.gnumeric -------------------------------------------------------------------------------- /cpu/mc1322x/doc/mc13224v.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/mc1322x/doc/mc13224v.img -------------------------------------------------------------------------------- /doc/pics/ravenusb_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/ravenusb_large.jpg -------------------------------------------------------------------------------- /doc/pics/ravenusb_medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/ravenusb_medium.jpg -------------------------------------------------------------------------------- /doc/pics/wireshark_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/wireshark_color.png -------------------------------------------------------------------------------- /examples/ip64-router/Makefile: -------------------------------------------------------------------------------- 1 | all: ip64-router 2 | CONTIKI=../.. 3 | 4 | include $(CONTIKI)/Makefile.include 5 | 6 | -------------------------------------------------------------------------------- /examples/irc-80col/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_PFS,MTU_SIZE=900 2 | -------------------------------------------------------------------------------- /examples/irc-80col/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/telnet-server/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = CONNECTIONS=3,WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/webbrowser-80col/Makefile.atarixl.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE 2 | -------------------------------------------------------------------------------- /platform/zoul/firefly/Makefile.firefly: -------------------------------------------------------------------------------- 1 | MOTELIST_ZOLERTIA = firefly 2 | BOARD_SOURCEFILES += board.c leds-arch.c 3 | -------------------------------------------------------------------------------- /tools/apple2enh/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/apple2enh/default.cfg -------------------------------------------------------------------------------- /tools/apple2enh/menu.system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/apple2enh/menu.system -------------------------------------------------------------------------------- /tools/atarixl/dos25/dos.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/atarixl/dos25/dos.sys -------------------------------------------------------------------------------- /tools/atarixl/dos25/dup.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/atarixl/dos25/dup.sys -------------------------------------------------------------------------------- /tools/sky/lib/shared-bsl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/lib/shared-bsl.zip -------------------------------------------------------------------------------- /tools/sky/lib/win32event.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/lib/win32event.pyd -------------------------------------------------------------------------------- /tools/sky/lib/win32file.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/lib/win32file.pyd -------------------------------------------------------------------------------- /tools/stm32w/serialdump-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/serialdump-linux -------------------------------------------------------------------------------- /tools/z80/hex2bin/ihx/mp6.ihx: -------------------------------------------------------------------------------- 1 | :10000000544d6767676767676767000000000000 2 | :02000c04MP6LOAD 3 | :02000e04MP6EXEC 4 | -------------------------------------------------------------------------------- /apps/process-list/Makefile.process-list: -------------------------------------------------------------------------------- 1 | process-list_src = process-list.c 2 | process-list_dsc = process-list-dsc.c 3 | -------------------------------------------------------------------------------- /doc/pics/contiki_menu_3290.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/contiki_menu_3290.jpg -------------------------------------------------------------------------------- /doc/pics/ravenusb_shortpins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/ravenusb_shortpins.jpg -------------------------------------------------------------------------------- /examples/irc-80col/Makefile.apple2enh.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/mbxxx/webserver-ajax/symbols.h: -------------------------------------------------------------------------------- 1 | #include "loader/symbols.h" 2 | 3 | extern const struct symbols symbols[1]; 4 | -------------------------------------------------------------------------------- /examples/webbrowser-80col/Makefile.c64.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/websockets/node/Makefile: -------------------------------------------------------------------------------- 1 | install: 2 | npm install websocket 3 | 4 | 5 | run: 6 | nodejs example-server.js 7 | -------------------------------------------------------------------------------- /tools/atarixl/mydos4534/dos.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/atarixl/mydos4534/dos.sys -------------------------------------------------------------------------------- /tools/atarixl/mydos4534/dup.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/atarixl/mydos4534/dup.sys -------------------------------------------------------------------------------- /tools/cooja/examples/project_new_radiomedium/cooja.config: -------------------------------------------------------------------------------- 1 | org.contikios.cooja.Cooja.RADIOMEDIUMS = + DummyRadioMedium 2 | -------------------------------------------------------------------------------- /tools/cooja/lib/jsyntaxpane.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/lib/jsyntaxpane.jar -------------------------------------------------------------------------------- /tools/sky/lib/pywintypes23.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/lib/pywintypes23.dll -------------------------------------------------------------------------------- /tools/sky/motelist-windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/motelist-windows.exe -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/uip-log.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void uip_log(char *msg) 4 | { 5 | printf("uip: %s\n", msg); 6 | } 7 | -------------------------------------------------------------------------------- /cpu/cc26xx-cc13xx/Makefile.cc26xx: -------------------------------------------------------------------------------- 1 | TI_XXWARE_PATH = lib/cc26xxware 2 | 3 | include $(CONTIKI_CPU)/Makefile.cc26xx-cc13xx 4 | -------------------------------------------------------------------------------- /cpu/stm32w108/e_stdio/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/stm32w108/e_stdio/src/test.c -------------------------------------------------------------------------------- /cpu/stm32w108/lib/e_stdio_thumb2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/stm32w108/lib/e_stdio_thumb2.a -------------------------------------------------------------------------------- /doc/pics/tutorial-raven-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/tutorial-raven-basic.jpg -------------------------------------------------------------------------------- /doc/pics/tutorial-raven-jtag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/tutorial-raven-jtag.jpg -------------------------------------------------------------------------------- /doc/pics/wireshark_explained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/wireshark_explained.png -------------------------------------------------------------------------------- /examples/mbxxx/mbxxx-websense/README.md: -------------------------------------------------------------------------------- 1 | webserver IPv6 2 | ============== 3 | 4 | See sky-websense example for more info. 5 | -------------------------------------------------------------------------------- /examples/sky-ip/httpd-fs/spin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/sky-ip/httpd-fs/spin.gif -------------------------------------------------------------------------------- /examples/webbrowser-80col/Makefile.apple2enh.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_MOUSE,WITH_PFS 2 | -------------------------------------------------------------------------------- /examples/webbrowser-80col/Makefile.c128.defines: -------------------------------------------------------------------------------- 1 | DEFINES = WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_GUI,WITH_PFS,MTU_SIZE=500 2 | -------------------------------------------------------------------------------- /examples/websockets/Makefile: -------------------------------------------------------------------------------- 1 | all: websocket-example 2 | CONTIKI=../.. 3 | 4 | include $(CONTIKI)/Makefile.include 5 | 6 | 7 | -------------------------------------------------------------------------------- /platform/micaz/apps/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI = ../../.. 2 | 3 | all: battery-monitor 4 | 5 | include $(CONTIKI)/Makefile.include 6 | -------------------------------------------------------------------------------- /platform/wismote/dev/ext-sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/wismote/dev/ext-sensor.c -------------------------------------------------------------------------------- /platform/wismote/dev/ext-sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/wismote/dev/ext-sensor.h -------------------------------------------------------------------------------- /platform/zoul/firefly-reva/Makefile.firefly-reva: -------------------------------------------------------------------------------- 1 | MOTELIST_ZOLERTIA = firefly 2 | BOARD_SOURCEFILES += board.c leds-arch.c 3 | -------------------------------------------------------------------------------- /platform/zoul/images/firefly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/firefly.png -------------------------------------------------------------------------------- /tools/code-style/uncrustify-fix-style.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uncrustify --no-backup --replace -c `dirname $0`/uncrustify.cfg $* 3 | -------------------------------------------------------------------------------- /tools/cooja/apps/mspsim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/apps/mspsim/README.md -------------------------------------------------------------------------------- /tools/sky/msp430-bsl-windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/msp430-bsl-windows.exe -------------------------------------------------------------------------------- /tools/sky/serialdump-windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/sky/serialdump-windows.exe -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/404.html: -------------------------------------------------------------------------------- 1 | 404 - file not found - go to index -------------------------------------------------------------------------------- /cpu/avr/radio/mac/Makefile.mac: -------------------------------------------------------------------------------- 1 | CONTIKI_CPU_DIRS += radio/mac 2 | CONTIKI_TARGET_SOURCEFILES += mac.c sicslowmac.c 3 | 4 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/sensor.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Sensor Readings


3 | %! sensors 4 | %! file-stats . -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/sensor.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Sensor Readings


3 | %! sensors 4 | %! file-stats . -------------------------------------------------------------------------------- /platform/zoul/images/zoul-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/zoul-front.png -------------------------------------------------------------------------------- /tools/cooja/apps/mspsim/exp5438.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/apps/mspsim/exp5438.png -------------------------------------------------------------------------------- /tools/cooja/apps/mspsim/tyndall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/apps/mspsim/tyndall.png -------------------------------------------------------------------------------- /tools/cooja/lib/swingx-all-1.6.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/lib/swingx-all-1.6.4.jar -------------------------------------------------------------------------------- /tools/empty-symbols.c: -------------------------------------------------------------------------------- 1 | #include "symbols.h" 2 | 3 | const int symbols_nelts = 0; 4 | const struct symbols symbols[] = {{0,0}}; 5 | -------------------------------------------------------------------------------- /tools/jn516x/JennicModuleProgrammer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/jn516x/JennicModuleProgrammer -------------------------------------------------------------------------------- /tools/stm32w/serialdump-windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/serialdump-windows.exe -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/_ssl.pyd -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/bz2.pyd -------------------------------------------------------------------------------- /tools/stm32w/wpcapslip6/rtimer-arch.h: -------------------------------------------------------------------------------- 1 | #ifndef RTIMER_ARCH_H_ 2 | #define RTIMER_ARCH_H_ 3 | 4 | 5 | #endif /* RTIMER_ARCH_H_ */ 6 | -------------------------------------------------------------------------------- /apps/irc/Makefile.irc: -------------------------------------------------------------------------------- 1 | irc_src = irc.c ircc.c psock.c ircc-strings.c \ 2 | ctk-textentry-cmdline.c 3 | irc_dsc = irc-dsc.c 4 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/merge-rodata.ld: -------------------------------------------------------------------------------- 1 | SECTIONS 2 | { 3 | .text : 4 | { 5 | *(.text) 6 | *(.rodata.* .rodata) 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /cpu/arm/stm32l152/lib/e_stdio_thumb2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/arm/stm32l152/lib/e_stdio_thumb2.a -------------------------------------------------------------------------------- /cpu/avr/dev/usb/storage/ctrl_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/avr/dev/usb/storage/ctrl_access.c -------------------------------------------------------------------------------- /cpu/avr/radio/rf230/Makefile.rf230: -------------------------------------------------------------------------------- 1 | CONTIKI_CPU_DIRS += radio/rf230 2 | CONTIKI_TARGET_SOURCEFILES += radio.c hal.c frame.c 3 | -------------------------------------------------------------------------------- /cpu/avr/radio/rf230bb/Makefile.rf230bb: -------------------------------------------------------------------------------- 1 | CONTIKI_CPU_DIRS += radio/rf230bb 2 | CONTIKI_TARGET_SOURCEFILES += rf230bb.c halbb.c 3 | -------------------------------------------------------------------------------- /cpu/mc1322x/doc/pow-rssi-lqi.gnumeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/mc1322x/doc/pow-rssi-lqi.gnumeric -------------------------------------------------------------------------------- /cpu/stm32w108/lib/smallprintf_thumb2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/stm32w108/lib/smallprintf_thumb2.a -------------------------------------------------------------------------------- /doc/pics/tutorial-raven-connections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/tutorial-raven-connections.jpg -------------------------------------------------------------------------------- /examples/tcp-socket/Makefile: -------------------------------------------------------------------------------- 1 | all: tcp-server 2 | 3 | CONTIKI=../.. 4 | CONTIKI_WITH_IPV4 = 1 5 | include $(CONTIKI)/Makefile.include 6 | -------------------------------------------------------------------------------- /examples/telnet-server/Makefile.apple2enh.defines: -------------------------------------------------------------------------------- 1 | DEFINES = CONNECTIONS=3,WITH_LOGGING,WITH_CLIENT,WITH_DNS,WITH_80COL,WITH_REBOOT 2 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-ipso/Makefile.raven-ipso: -------------------------------------------------------------------------------- 1 | raven-ipso_src = raven-ipso.c 2 | 3 | 4 | CFLAGS+=-DRAVEN_LCD_INTERFACE=1 5 | -------------------------------------------------------------------------------- /platform/mbxxx/dev/temperature-sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/mbxxx/dev/temperature-sensor.h -------------------------------------------------------------------------------- /platform/zoul/images/firefly-reva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/firefly-reva.jpg -------------------------------------------------------------------------------- /platform/zoul/images/orion-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/orion-pinout.png -------------------------------------------------------------------------------- /tools/collect-view/collect-init.script: -------------------------------------------------------------------------------- 1 | echo ~K 2 | echo killall 3 | sleep 2 4 | echo mac 0 5 | sleep 2 6 | echo time %TIME% | null 7 | -------------------------------------------------------------------------------- /tools/cooja/apps/mrm/images/antenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/apps/mrm/images/antenna.png -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/FTD2XX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/FTD2XX.dll -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/_ctypes.pyd -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/_socket.pyd -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/pyexpat.pyd -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/select.pyd -------------------------------------------------------------------------------- /tools/stm32w/wpcapslip6/wpcapslip6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/wpcapslip6/wpcapslip6.exe -------------------------------------------------------------------------------- /tools/z80/hex2bin/ihx/mode1.ihx: -------------------------------------------------------------------------------- 1 | :10000000d3d3d3d3d3d3d3d3d3d3000000000000 2 | :0e0010000dc40a00a5264843343046000000 3 | :06000a02TAPE 4 | -------------------------------------------------------------------------------- /tools/z80/hex2bin/ihx/mode2.ihx: -------------------------------------------------------------------------------- 1 | :10000000d3d3d3d3d3d3d3d3d3d3000000000000 2 | :0e0010000d840a00a5264838343046000000 3 | :06000a02TAPE 4 | -------------------------------------------------------------------------------- /tools/z80/hex2bin/ihx/mode5.ihx: -------------------------------------------------------------------------------- 1 | :10000000d3d3d3d3d3d3d3d3d3d3000000000000 2 | :0e0010000d800a00a5264838303046000000 3 | :06000a02TAPE 4 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/builtins.awk: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | builtin["_exit"] = "void _exit()"; 3 | builtin["strlen"] = "unsigned long strlen()"; 4 | } 5 | -------------------------------------------------------------------------------- /doc/pics/ravenusb_network_connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/doc/pics/ravenusb_network_connections.png -------------------------------------------------------------------------------- /examples/mbxxx/temperature/temp-sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/mbxxx/temperature/temp-sensor.c -------------------------------------------------------------------------------- /examples/webserver/httpd-cfs/backgrnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/webserver/httpd-cfs/backgrnd.gif -------------------------------------------------------------------------------- /examples/webserver/httpd-cfs/contiki.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/webserver/httpd-cfs/contiki.gif -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-ipso/Makefile.raven-ipso: -------------------------------------------------------------------------------- 1 | raven-ipso_src = raven-ipso.c 2 | 3 | 4 | CFLAGS+=-DRAVEN_LCD_INTERFACE=1 5 | -------------------------------------------------------------------------------- /platform/zoul/images/remote-reva-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/remote-reva-back.png -------------------------------------------------------------------------------- /platform/zoul/images/zoul-pinout-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/zoul-pinout-back.png -------------------------------------------------------------------------------- /tools/collect-view/lib/jcommon-1.0.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/collect-view/lib/jcommon-1.0.13.jar -------------------------------------------------------------------------------- /tools/cooja/examples/project_new_plugin/cooja.config: -------------------------------------------------------------------------------- 1 | DESCRIPTION = Example plugin 2 | org.contikios.cooja.Cooja.PLUGINS = + MyDummyPlugin 3 | -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/JlinkARM.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/JlinkARM.DLL -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/python26.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/python26.dll -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/w9xpopen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/w9xpopen.exe -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/win32api.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/win32api.pyd -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/win32pipe.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/win32pipe.pyd -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/loader/empty-symbols.c: -------------------------------------------------------------------------------- 1 | #include "symbols.h" 2 | const int symbols_nelts = 0; 3 | const struct symbols symbols[] = {{0,0}}; 4 | -------------------------------------------------------------------------------- /cpu/arm/stm32l152/lib/smallprintf_thumb2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/arm/stm32l152/lib/smallprintf_thumb2.a -------------------------------------------------------------------------------- /cpu/stm32w108/lib/e_stdio_intonly_thumb2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/stm32w108/lib/e_stdio_intonly_thumb2.a -------------------------------------------------------------------------------- /examples/mbxxx/webserver-ajax/symbols.c: -------------------------------------------------------------------------------- 1 | #include "symbols.h" 2 | 3 | const int symbols_nelts = 0; 4 | const struct symbols symbols[] = {{0,0}}; 5 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/sensor.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Sensor Readings


3 | %! sensors 4 | %! file-stats . -------------------------------------------------------------------------------- /platform/avr-ravenlcd/doc/pics/caution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/avr-ravenlcd/doc/pics/caution.gif -------------------------------------------------------------------------------- /platform/zoul/images/orion-router-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/orion-router-front.png -------------------------------------------------------------------------------- /platform/zoul/images/remote-reva-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/remote-reva-front.png -------------------------------------------------------------------------------- /platform/zoul/images/zoul-pinout-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/zoul-pinout-front.png -------------------------------------------------------------------------------- /tools/code-style/uncrustify-check-style.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uncrustify -q -c `dirname $0`/uncrustify.cfg -f $1 | diff -u $1 --to-file=/dev/stdin 3 | -------------------------------------------------------------------------------- /tools/collect-view/lib/jfreechart-1.0.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/collect-view/lib/jfreechart-1.0.10.jar -------------------------------------------------------------------------------- /tools/cooja/apps/avrora/lib/avrora-small.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/apps/avrora/lib/avrora-small.jar -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/d2xx._d2xx.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/d2xx._d2xx.pyd -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/pywintypes26.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/pywintypes26.dll -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/unicodedata.pyd -------------------------------------------------------------------------------- /apps/cmdd/cmdd.h: -------------------------------------------------------------------------------- 1 | #ifndef CMDD_H_ 2 | #define CMDD_H_ 3 | 4 | #include "contiki.h" 5 | 6 | PROCESS_NAME(cmdd_process); 7 | 8 | #endif /* CMDD_H_ */ 9 | -------------------------------------------------------------------------------- /apps/serial-shell/Makefile.serial-shell: -------------------------------------------------------------------------------- 1 | serial-shell_src = serial-shell.c 2 | 3 | APPS += shell 4 | include $(CONTIKI)/apps/shell/Makefile.shell 5 | -------------------------------------------------------------------------------- /apps/webbrowser/http-user-agent-string: -------------------------------------------------------------------------------- 1 | http_user_agent_fields "Connection: close\r\nUser-Agent: Contiki/3.x (; http://www.contiki-os.org/)\r\n\r\n" 2 | -------------------------------------------------------------------------------- /cpu/arm/stm32l152/lib/e_stdio_intonly_thumb2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/arm/stm32l152/lib/e_stdio_intonly_thumb2.a -------------------------------------------------------------------------------- /examples/timers/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = all-timers 2 | all: $(CONTIKI_PROJECT) 3 | 4 | CONTIKI = ../.. 5 | include $(CONTIKI)/Makefile.include 6 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/sensor.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Sensor Readings


3 | %! sensors 4 | %! file-stats . -------------------------------------------------------------------------------- /platform/avr-ravenlcd/doc/pics/raven3290p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/avr-ravenlcd/doc/pics/raven3290p.jpg -------------------------------------------------------------------------------- /tools/cooja/apps/mrm/cooja.config: -------------------------------------------------------------------------------- 1 | org.contikios.cooja.Cooja.RADIOMEDIUMS = + org.contikios.mrm.MRM 2 | org.contikios.cooja.Cooja.JARFILES = + mrm.jar 3 | -------------------------------------------------------------------------------- /tools/cooja/config/external_tools_linux_64.config: -------------------------------------------------------------------------------- 1 | COMPILER_ARGS = -I'$(JAVA_HOME)/include' -I'$(JAVA_HOME)/include/linux' -fno-builtin-printf -fPIC 2 | -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/stm32w_flasher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/stm32w_flasher.exe -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/index.shtml: -------------------------------------------------------------------------------- 1 | %! header 2 | Welcome to the Contiki nano web server! 3 | %! file-stats . -------------------------------------------------------------------------------- /cpu/avr/radio/ieee-manager/Makefile.ieee-manager: -------------------------------------------------------------------------------- 1 | CONTIKI_CPU_DIRS += radio/ieee-manager 2 | CONTIKI_TARGET_SOURCEFILES += ieee-15-4-manager.c 3 | -------------------------------------------------------------------------------- /doc/tutorials.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * \defgroup tutorials Tutorials 3 | * @{ 4 | This module contains all Contiki related tutorials. 5 | 6 | */ 7 | /** @} */ 8 | -------------------------------------------------------------------------------- /examples/cc26xx/cc26xx-web-demo/img/6lbr-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/cc26xx/cc26xx-web-demo/img/6lbr-web.png -------------------------------------------------------------------------------- /examples/hello-world/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = hello-world 2 | all: $(CONTIKI_PROJECT) 3 | 4 | CONTIKI = ../.. 5 | include $(CONTIKI)/Makefile.include 6 | -------------------------------------------------------------------------------- /examples/mbxxx/webserver-ajax/httpd-fs/spin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/mbxxx/webserver-ajax/httpd-fs/spin.gif -------------------------------------------------------------------------------- /examples/ping-ipv6/Makefile: -------------------------------------------------------------------------------- 1 | all: example-ping6 2 | APPS=ping6 3 | 4 | CONTIKI = ../.. 5 | CONTIKI_WITH_IPV6 = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/webserver-ipv6-raven/Huginn/favicon.png -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/webserver-ipv6-raven/Muninn/favicon.png -------------------------------------------------------------------------------- /platform/avr-ravenlcd/Makefile.avr-ravenlcd: -------------------------------------------------------------------------------- 1 | $(error avr-ravenlcd is not a contiki platform yet. $$make in this directory, or use the AVR studio project) 2 | -------------------------------------------------------------------------------- /platform/econotag/platform_prints.h: -------------------------------------------------------------------------------- 1 | void print_processes(struct process * const processes[]); 2 | void print_netstack(void); 3 | void print_lladdrs(void); 4 | -------------------------------------------------------------------------------- /platform/zoul/images/remote-reva-pinout-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/remote-reva-pinout-back.png -------------------------------------------------------------------------------- /platform/zoul/images/remote-reva-pinout-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/remote-reva-pinout-front.png -------------------------------------------------------------------------------- /tools/cooja/apps/powertracker/cooja.config: -------------------------------------------------------------------------------- 1 | org.contikios.cooja.Cooja.PLUGINS = + PowerTracker 2 | org.contikios.cooja.Cooja.JARFILES = + powertracker.jar 3 | -------------------------------------------------------------------------------- /apps/ping6/ping6.h: -------------------------------------------------------------------------------- 1 | #ifndef PING6_H_ 2 | #define PING6_H_ 3 | 4 | #include "contiki.h" 5 | 6 | PROCESS_NAME(ping6_process); 7 | 8 | #endif /* PING6_H_ */ 9 | -------------------------------------------------------------------------------- /cpu/stm32w108/simplemac/library/simplemac-library.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/stm32w108/simplemac/library/simplemac-library.a -------------------------------------------------------------------------------- /examples/http-socket/Makefile: -------------------------------------------------------------------------------- 1 | all: http-example 2 | CONTIKI=../.. 3 | MODULES += core/net/http-socket 4 | 5 | include $(CONTIKI)/Makefile.include 6 | 7 | 8 | -------------------------------------------------------------------------------- /platform/mbxxx/dev/irq.c: -------------------------------------------------------------------------------- 1 | /** 2 | * \addtogroup mbxxx-platform 3 | * 4 | * @{ 5 | */ 6 | void 7 | irq_init(void) 8 | { 9 | } 10 | 11 | /** @} */ 12 | -------------------------------------------------------------------------------- /platform/micaz/apps/mts310/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI = ../../../.. 2 | 3 | all: accel-test light-test magnet-test mic-test 4 | 5 | include $(CONTIKI)/Makefile.include 6 | -------------------------------------------------------------------------------- /platform/zoul/images/firefly-reva-pinout-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/zoul/images/firefly-reva-pinout-front.png -------------------------------------------------------------------------------- /regression-tests/04-rime/code/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI = ../../.. 2 | 3 | all: trickle-node 4 | 5 | CONTIKI_WITH_RIME = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /tools/cooja/apps/mspsim/example/helloworld.firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/apps/mspsim/example/helloworld.firmware -------------------------------------------------------------------------------- /tools/stm32w/stm32w_flasher/CompositeForSTM32W.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/stm32w/stm32w_flasher/CompositeForSTM32W.bin -------------------------------------------------------------------------------- /tools/timestamp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # We run perl through a shell to avoid having to hard-code the path to perl 3 | perl -e '$|=1; while(<>) {print time . " $_";}' 4 | -------------------------------------------------------------------------------- /apps/email/Makefile.email: -------------------------------------------------------------------------------- 1 | email_src = email.c smtp-socket.c smtp-strings.c ctk-textentry-multiline.c \ 2 | psock.c memb.c 3 | email_dsc = email-dsc.c 4 | -------------------------------------------------------------------------------- /cpu/cc253x/usb/Makefile.usb: -------------------------------------------------------------------------------- 1 | USB_SOURCEFILES = usb-arch.c usb-core.c cdc-acm.c cdc-acm-descriptors.c 2 | CONTIKI_CPU_DIRS += usb usb/common usb/common/cdc-acm 3 | 4 | -------------------------------------------------------------------------------- /cpu/mc1322x/io.h: -------------------------------------------------------------------------------- 1 | /* empty io.h include file */ 2 | /* io.h is an msp430 specific file */ 3 | /* this io.h is here to prevent errors when developers include this */ 4 | -------------------------------------------------------------------------------- /examples/cc26xx/cc26xx-web-demo/img/coap-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/cc26xx/cc26xx-web-demo/img/coap-resources.png -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-lcd-interface/Makefile.raven-lcd-interface: -------------------------------------------------------------------------------- 1 | raven-lcd-interface_src = raven-lcd.c 2 | 3 | 4 | CFLAGS+=-DRAVEN_LCD_INTERFACE=1 5 | -------------------------------------------------------------------------------- /platform/avr-ravenlcd/doc/pics/contiki_menu_3290.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/avr-ravenlcd/doc/pics/contiki_menu_3290.jpg -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/index.shtml: -------------------------------------------------------------------------------- 1 | %! header 2 | Welcome to the Contiki nano web server! 3 | %! file-stats . -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/b.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/o.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/x.gif -------------------------------------------------------------------------------- /cpu/mc1322x/board/board.h: -------------------------------------------------------------------------------- 1 | #ifndef BOARD 2 | BOARD = redbee-econotag 3 | #endif 4 | 5 | #if BOARD == redbee-econotag 6 | #include "redbee-econotag.h" 7 | #endif 8 | 9 | -------------------------------------------------------------------------------- /cpu/stm32w108/simplemac/library/simplemac-library-gnu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/cpu/stm32w108/simplemac/library/simplemac-library-gnu.a -------------------------------------------------------------------------------- /examples/cc26xx/cc26xx-web-demo/img/well-known-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/cc26xx/cc26xx-web-demo/img/well-known-core.png -------------------------------------------------------------------------------- /examples/jn516x/dr1175-sensors/README.md: -------------------------------------------------------------------------------- 1 | Sensor test for DR1175 evaluation board (light + temp/humidity). 2 | Reads and prints out various sensor samples every second. 3 | -------------------------------------------------------------------------------- /regression-tests/21-large-rpl/code/router/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI=../../../.. 2 | 3 | CFLAGS+=-DPROJECT_CONF_H=\"project-conf.h\" 4 | 5 | include $(CONTIKI)/Makefile.include 6 | -------------------------------------------------------------------------------- /tools/coffee-manager/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | (cd org/contikios/coffee && javac *.java) && \ 3 | jar cvfm coffee.jar MANIFEST.MF org/contikios/coffee/*.class *.properties 4 | -------------------------------------------------------------------------------- /tools/cooja/lib/JSYNTAXPANE_LICENSE: -------------------------------------------------------------------------------- 1 | Downloaded from http://code.google.com/p/jsyntaxpane/. 2 | 3 | Apache License 2.0: 4 | http://www.apache.org/licenses/LICENSE-2.0 5 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/favicon.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/bc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/bc.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/bh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/bh.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/bv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/bv.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/oc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/oc.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/oh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/oh.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/ov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/ov.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/xc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/xc.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/xh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/xh.gif -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/xv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/xv.gif -------------------------------------------------------------------------------- /core/net/mac/tsch/Makefile.tsch: -------------------------------------------------------------------------------- 1 | CONTIKI_SOURCEFILES += tsch.c tsch-slot-operation.c tsch-queue.c tsch-packet.c tsch-schedule.c tsch-log.c tsch-rpl.c tsch-adaptive-timesync.c 2 | -------------------------------------------------------------------------------- /examples/econotag-ecc-test/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI = ../.. 2 | TARGET = econotag 3 | 4 | all: econotag-ecc-test 5 | 6 | APPS += ecc 7 | 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/404.html: -------------------------------------------------------------------------------- 1 |

404 - file not found

Go here instead.

-------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/404.html: -------------------------------------------------------------------------------- 1 |

404 - file not found

Go here instead.

-------------------------------------------------------------------------------- /platform/c128/lib/logscr.S: -------------------------------------------------------------------------------- 1 | ; 2016-04-28, Greg King 2 | ; 3 | ; The C128 function is the same as the C64 function. 4 | 5 | .include "../../c64/lib/logscr.S" 6 | -------------------------------------------------------------------------------- /regression-tests/17-slip-radio/code/Makefile: -------------------------------------------------------------------------------- 1 | all: wait-dag 2 | APPS=servreg-hack 3 | CONTIKI=../../.. 4 | 5 | CONTIKI_WITH_IPV6 = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /cpu/6502/ethconfig/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = ethconfig 2 | all: $(CONTIKI_PROJECT) 3 | 4 | CONTIKI = ../../.. 5 | CONTIKI_WITH_IPV4 = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /cpu/6502/ipconfig/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = ipconfig 2 | all: $(CONTIKI_PROJECT) 3 | 4 | CONTIKI = ../../.. 5 | CONTIKI_WITH_IPV4 = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /cpu/6502/serconfig/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = serconfig 2 | all: $(CONTIKI_PROJECT) 3 | 4 | CONTIKI = ../../.. 5 | CONTIKI_WITH_IPV4 = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /examples/cc26xx/cc26xx-web-demo/img/quickstart-sensortag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/cc26xx/cc26xx-web-demo/img/quickstart-sensortag.png -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/avr-raven/apps/raven-webserver/httpd-fs/favicon.png -------------------------------------------------------------------------------- /apps/ipso-objects/Makefile.ipso-objects: -------------------------------------------------------------------------------- 1 | ipso-objects_src = ipso-temperature.c ipso-button.c ipso-leds-control.c \ 2 | ipso-light-control.c ipso-objects.c 3 | CFLAGS += -DWITH_IPSO=1 4 | -------------------------------------------------------------------------------- /apps/telnetd/Makefile.telnetd: -------------------------------------------------------------------------------- 1 | telnetd_src = telnetd.c memb.c list.c random.c 2 | telnetd_dsc = telnetd-dsc.c 3 | 4 | APPS += shell 5 | include $(CONTIKI)/apps/shell/Makefile.shell 6 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/ttt.shtml: -------------------------------------------------------------------------------- 1 |
2 | %! tictac 3 |
-------------------------------------------------------------------------------- /cpu/avr/dev/flash.h: -------------------------------------------------------------------------------- 1 | #ifndef FLASH_H_ 2 | #define FLASH_H_ 3 | 4 | #include 5 | 6 | void flash_write_page(uint32_t page, uint8_t *buf); 7 | 8 | #endif /* FLASH_H_ */ 9 | -------------------------------------------------------------------------------- /examples/antelope/shell/project-conf.h: -------------------------------------------------------------------------------- 1 | #undef QUEUEBUF_CONF_NUM 2 | #define QUEUEBUF_CONF_NUM 4 3 | 4 | #undef NETSTACK_CONF_RDC 5 | #define NETSTACK_CONF_RDC nullrdc_driver 6 | -------------------------------------------------------------------------------- /examples/cc2538-common/pka/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = ecc-ecdh ecc-sign ecc-verify 2 | 3 | all: $(CONTIKI_PROJECT) 4 | 5 | CONTIKI = ../../.. 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /examples/cc26xx/cc26xx-web-demo/img/sensor-readings-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/examples/cc26xx/cc26xx-web-demo/img/sensor-readings-config.png -------------------------------------------------------------------------------- /examples/udp-ipv6/Makefile: -------------------------------------------------------------------------------- 1 | all: udp-server udp-client 2 | 3 | CONTIKI = ../.. 4 | CONTIKI_WITH_IPV6 = 1 5 | CFLAGS += -DUIP_CONF_ND6_SEND_NS=1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/404.html: -------------------------------------------------------------------------------- 1 |

404 - file not found

Go here instead.

-------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/index.html: -------------------------------------------------------------------------------- 1 | Contiki-nano Welcome to the Contiki nano web server! 2 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/index.shtml: -------------------------------------------------------------------------------- 1 |
2 | %! tictac 3 |
-------------------------------------------------------------------------------- /cpu/arm/common/usb/cdc-acm/cdc-acm.h: -------------------------------------------------------------------------------- 1 | #ifndef CDC_ACM_H_UFV6K50827__ 2 | #define CDC_ACM_H_UFV6K50827__ 3 | 4 | void 5 | usb_cdc_acm_setup(); 6 | 7 | #endif /* CDC_ACM_H_UFV6K50827__ */ 8 | -------------------------------------------------------------------------------- /examples/ftp/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = ftp-client 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = ftp 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_IPV4 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/irc/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = irc-client 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = irc 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_IPV4 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/mbxxx/button/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = test-button 2 | 3 | all: $(CONTIKI_PROJECT) 4 | 5 | CONTIKI = ../../.. 6 | CONTIKI_WITH_RIME = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /examples/multi-threading/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = multi-threading 2 | all: $(CONTIKI_PROJECT) 3 | 4 | CONTIKI = ../.. 5 | CONTIKI_WITH_RIME = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /tools/cooja/apps/native_gateway/cooja.config: -------------------------------------------------------------------------------- 1 | org.contikios.cooja.Cooja.PLUGINS = + org.contikios.cooja.plugins.NativeIPGateway 2 | org.contikios.cooja.Cooja.JARFILES = + native_gateway.jar 3 | -------------------------------------------------------------------------------- /tools/stm32w/wpcapslip6/ip-process.h: -------------------------------------------------------------------------------- 1 | #ifndef IP_PROCESS_H 2 | #define IP_PROCESS_H 3 | 4 | uint16_t ip_process(unsigned char *buf, unsigned int len); 5 | 6 | #endif /* IP_PROCESS_H */ 7 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/ttt/index.html: -------------------------------------------------------------------------------- 1 | Contiki-nano Welcome to the Contiki nano web server! 2 | -------------------------------------------------------------------------------- /core/dev/nullradio.h: -------------------------------------------------------------------------------- 1 | #ifndef NULLRADIO_H 2 | #define NULLRADIO_H 3 | 4 | #include "dev/radio.h" 5 | 6 | extern const struct radio_driver nullradio_driver; 7 | 8 | #endif /* NULLRADIO_H */ 9 | -------------------------------------------------------------------------------- /examples/mbxxx/acc-sensor/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = acc-example 2 | 3 | all: $(CONTIKI_PROJECT) 4 | 5 | CONTIKI = ../../.. 6 | CONTIKI_WITH_RIME = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /examples/mbxxx/temperature/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = temp-sensor 2 | 3 | all: $(CONTIKI_PROJECT) 4 | 5 | CONTIKI = ../../.. 6 | CONTIKI_WITH_RIME = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /examples/sky-ip/httpd-fs/neighbors.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Node 3 | %! nodeid 4 |

5 |

Neighbors

6 | 9 | %!: /footer.html 10 | 11 | -------------------------------------------------------------------------------- /examples/wget/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = wget 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = webbrowser 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_IPV4 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/404.html: -------------------------------------------------------------------------------- 1 |

404 - file not found

Go here instead.

-------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/favicon.png -------------------------------------------------------------------------------- /regression-tests/11-ipv6/code/receiver/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI=../../../.. 2 | 3 | CFLAGS+= -DPROJECT_CONF_H=\"project-conf.h\" 4 | 5 | CONTIKI_WITH_IPV6 = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /regression-tests/11-ipv6/code/sender/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI=../../../.. 2 | 3 | CFLAGS+= -DPROJECT_CONF_H=\"project-conf.h\" 4 | 5 | CONTIKI_WITH_IPV6 = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /apps/webbrowser/Makefile.webbrowser: -------------------------------------------------------------------------------- 1 | webbrowser_src = www.c webclient.c http-strings.c http-user-agent-string.c \ 2 | htmlparser.c html-strings.c arg.c 3 | webbrowser_dsc = www-dsc.c 4 | -------------------------------------------------------------------------------- /examples/eeprom-test/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = eeprom-test 2 | all: $(CONTIKI_PROJECT) 3 | TARGET=mbxxx 4 | 5 | CONTIKI = ../.. 6 | CONTIKI_WITH_RIME = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /examples/email/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = email-client 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = email 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_IPV4 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/irc-80col/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = irc-client 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = irc 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_IPV4 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/netperf/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = netperf-shell 2 | all: $(CONTIKI_PROJECT) 3 | APPS=serial-shell 4 | 5 | CONTIKI = ../.. 6 | CONTIKI_WITH_RIME = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /examples/trickle-library/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = trickle-library 2 | 3 | all: $(CONTIKI_PROJECT) 4 | 5 | CONTIKI = ../.. 6 | 7 | CONTIKI_WITH_IPV6 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /tools/cooja/apps/avrora/cooja.config: -------------------------------------------------------------------------------- 1 | org.contikios.cooja.Cooja.MOTETYPES = + org.contikios.cooja.avrmote.MicaZMoteType 2 | org.contikios.cooja.Cooja.JARFILES = + cooja_avrora.jar avrora-small.jar 3 | -------------------------------------------------------------------------------- /tools/cooja/apps/collect-view/cooja.config: -------------------------------------------------------------------------------- 1 | org.contikios.cooja.Cooja.PLUGINS = + org.contikios.cooja.plugins.collectview.CollectView 2 | org.contikios.cooja.Cooja.JARFILES = + cooja-collect-view.jar 3 | -------------------------------------------------------------------------------- /tools/cooja/examples/project_new_radiomedium/java/DummyRadioMedium.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdunkels/contiki-fork/HEAD/tools/cooja/examples/project_new_radiomedium/java/DummyRadioMedium.java -------------------------------------------------------------------------------- /cpu/mc1322x/doc/lqi-pdr/README.md: -------------------------------------------------------------------------------- 1 | lqi-pdr 2 | ======= 3 | 4 | grep count 1000pkt-64len.txt | cut -d ' ' -f 2,5 | sed 's/ /,/g' | sort -n > 1000pkt-64len.csv 5 | asy plot.asy 6 | gv plot.eps 7 | -------------------------------------------------------------------------------- /examples/webbrowser/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = webbrowser 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = webbrowser 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_IPV4 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/files.shtml: -------------------------------------------------------------------------------- 1 | %! header.html 2 |

File statistics


3 | %! file-stats * 4 |
NameAccesses
5 | -------------------------------------------------------------------------------- /examples/fat/README.md: -------------------------------------------------------------------------------- 1 | FAT File System Example 2 | ======================= 3 | 4 | Supported Hardware (tested or known to work) 5 | -------------------------------------------- 6 | * Zoul: RE-Mote revision B 7 | -------------------------------------------------------------------------------- /examples/ipv6/simple-udp-rpl/Makefile: -------------------------------------------------------------------------------- 1 | all: broadcast-example unicast-sender unicast-receiver 2 | APPS=servreg-hack 3 | CONTIKI=../../.. 4 | 5 | CONTIKI_WITH_IPV6 = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /examples/mbxxx/coffee-test/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = coffee-test 2 | all: $(CONTIKI_PROJECT) 3 | 4 | COFFEE=1 5 | 6 | CONTIKI = ../../.. 7 | CONTIKI_WITH_RIME = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/powertrace/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = example-powertrace 2 | APPS+=powertrace 3 | all: $(CONTIKI_PROJECT) 4 | 5 | CONTIKI = ../.. 6 | CONTIKI_WITH_RIME = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /examples/webbrowser-80col/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = webbrowser 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = webbrowser 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_IPV4 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-lcd-interface/Makefile.raven-lcd-interface: -------------------------------------------------------------------------------- 1 | raven-lcd-interface_src = raven-lcd.c 2 | 3 | 4 | CFLAGS+=-DRAVEN_LCD_INTERFACE=1 -DPLATFORM_HAS_BATTERY -DPLATFORM_HAS_TEMPERATURE 5 | -------------------------------------------------------------------------------- /regression-tests/21-large-rpl/code/node/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI=../../../.. 2 | 3 | MODULES += core/net/http-socket 4 | 5 | CFLAGS+=-DPROJECT_CONF_H=\"project-conf.h\" 6 | 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /apps/webserver/httpd-fs/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |

404 - file not found

5 |

Go here instead.

6 |
7 | 8 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/loader/ram-segments.h: -------------------------------------------------------------------------------- 1 | #ifndef RAM_SEGMENTS_H_8EDB9N09UD__ 2 | #define RAM_SEGMENTS_H_8EDB9N09UD__ 3 | 4 | PROCESS_NAME(ram_segments_cleanup_process); 5 | 6 | #endif /* RAM_SEGMENTS_H_8EDB9N09UD__ */ 7 | -------------------------------------------------------------------------------- /examples/cc2530dk/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = hello-world blink-hello timer-test sensors-demo 2 | 3 | all: $(CONTIKI_PROJECT) 4 | 5 | CONTIKI = ../.. 6 | CONTIKI_WITH_RIME = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /examples/mbxxx/udp-ipv6-sleep/Makefile: -------------------------------------------------------------------------------- 1 | all: udp-server udp-client 2 | 3 | DEFINES=UIP_CONF_ND6_REACHABLE_TIME=0xffffffff 4 | 5 | CONTIKI = ../../.. 6 | CONTIKI_WITH_IPV6 = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /examples/sky-ip/httpd-fs/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |

404 - file not found

5 |

Go here instead.

6 |
7 | 8 | -------------------------------------------------------------------------------- /lib/fs/fat/README.md: -------------------------------------------------------------------------------- 1 | FatFs - Generic FAT File System Module 2 | ====================================== 3 | 4 | See the documentation on the [official FatFs Module website](http://elm-chan.org/fsw/ff/00index_e.html). 5 | -------------------------------------------------------------------------------- /regression-tests/02-hello-world/hello-world.js: -------------------------------------------------------------------------------- 1 | TIMEOUT(5000); 2 | 3 | while(true) { 4 | log.log("> " + msg + "\n"); 5 | if (msg.equals('Hello, world')) { 6 | log.testOK(); 7 | } 8 | YIELD(); 9 | } 10 | -------------------------------------------------------------------------------- /tools/cooja/examples/project_new_interface/cooja.config: -------------------------------------------------------------------------------- 1 | org.contikios.cooja.contikimote.ContikiMoteType.MOTE_INTERFACES = + DummyInterface 2 | org.contikios.cooja.contikimote.ContikiMoteType.C_SOURCES = + dummy_intf.c 3 | -------------------------------------------------------------------------------- /apps/orchestra/Makefile.orchestra: -------------------------------------------------------------------------------- 1 | orchestra_src = orchestra.c orchestra-rule-default-common.c orchestra-rule-eb-per-time-source.c orchestra-rule-unicast-per-neighbor-rpl-storing.c orchestra-rule-unicast-per-neighbor-rpl-ns.c 2 | -------------------------------------------------------------------------------- /apps/webserver/httpd-fs/processes.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

System processes


3 | 4 | %! processes 5 | %!: /footer.html 6 | -------------------------------------------------------------------------------- /examples/telnet-server/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = telnet-server 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = telnetd program-handler 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_IPV4 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/files.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

File statistics


IDNameThreadProcess state
3 | %! file-stats * 4 |
NameAccesses
5 | %!: /footer.html 6 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/files.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

File statistics


3 | %! file-stats * 4 |
NameAccesses
5 | %!: /footer.html 6 | -------------------------------------------------------------------------------- /regression-tests/12-rpl/code/Makefile: -------------------------------------------------------------------------------- 1 | all: sender-node receiver-node root-node 2 | CONTIKI=../../.. 3 | 4 | CFLAGS+=-DPROJECT_CONF_H=\"project-conf.h\" 5 | 6 | CONTIKI_WITH_IPV6 = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/files.shtml: -------------------------------------------------------------------------------- 1 | %! header.html 2 |

File statistics


3 | %! file-stats * 4 |
NameAccesses
5 | -------------------------------------------------------------------------------- /cpu/stm32w108/e_stdio/src/test-scanf.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | int main() { 5 | 6 | float flottant ; 7 | // char c; 8 | scanf("%f" , &flottant); 9 | // scanf("%c",&c); 10 | //while(1); 11 | return 0; 12 | 13 | } 14 | 15 | -------------------------------------------------------------------------------- /examples/cc2538dk/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI_PROJECT = cc2538-demo 3 | 4 | all: $(CONTIKI_PROJECT) 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_RIME = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /platform/z1/Makefile.z1sp: -------------------------------------------------------------------------------- 1 | # Makefile for Z1 Starter Platform 2 | 3 | # This is the actual flag we need to include specific Z1SP components 4 | CFLAGS += -DZ1_IS_Z1SP 5 | 6 | CONTIKI_TARGET_SOURCEFILES += potentiometer-sensor.c 7 | -------------------------------------------------------------------------------- /apps/antelope/Makefile.antelope: -------------------------------------------------------------------------------- 1 | antelope_src = antelope.c aql-adt.c aql-exec.c aql-lexer.c aql-parser.c \ 2 | index.c index-inline.c index-maxheap.c lvm.c relation.c \ 3 | result.c storage-cfs.c 4 | antelope_dsc = 5 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/rtimer-arch-interrupt.h: -------------------------------------------------------------------------------- 1 | #ifndef RTIMER_ARCH_INTERRUPT_H_P0PXG70757__ 2 | #define RTIMER_ARCH_INTERRUPT_H_P0PXG70757__ 3 | 4 | void rtimer_interrupt (void); 5 | 6 | #endif /* RTIMER_ARCH_INTERRUPT_H_P0PXG70757__ */ 7 | -------------------------------------------------------------------------------- /examples/collect/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = collect-view-shell 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = serial-shell powertrace collect-view 5 | CONTIKI = ../.. 6 | 7 | CONTIKI_WITH_RIME = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/example-shell/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = example-shell 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = serial-shell 5 | CONTIKI = ../.. 6 | CONTIKI_WITH_RIME = 1 7 | CONTIKI_WITH_IPV4 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/mbxxx/webserver-ajax/httpd-fs/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |

404 - file not found

5 |

Go here instead.

6 |
7 | 8 | -------------------------------------------------------------------------------- /examples/settings-example/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = settings-example 2 | all: $(CONTIKI_PROJECT) 3 | CFLAGS += -DCONTIKI_CONF_SETTINGS_MANAGER=1 4 | CONTIKI = ../.. 5 | CONTIKI_WITH_RIME = 1 6 | include $(CONTIKI)/Makefile.include 7 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/index.html: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

These pages are from a webserver running under the Contiki operating system. 3 | %! file-stats . -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/AT91SAM7S128-ROM.ld: -------------------------------------------------------------------------------- 1 | /* Memory Definitions */ 2 | 3 | MEMORY 4 | { 5 | CODE (rx) : ORIGIN = 0x00100000, LENGTH = 128K 6 | DATA (rw) : ORIGIN = 0x00200000, LENGTH = 32K 7 | } 8 | 9 | INCLUDE AT91SAM7S-ROM.ld 10 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/AT91SAM7S64-ROM.ld: -------------------------------------------------------------------------------- 1 | /* Memory Definitions */ 2 | 3 | MEMORY 4 | { 5 | CODE (rx) : ORIGIN = 0x00100000, LENGTH = 64K 6 | DATA (rw) : ORIGIN = 0x00200000, LENGTH = 16K 7 | } 8 | INCLUDE AT91SAM7S-ROM.ld 9 | 10 | -------------------------------------------------------------------------------- /examples/nrf52dk/blink-hello/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = blink-hello 2 | 3 | CONTIKI_WITH_RPL=0 4 | NRF52_WITHOUT_SOFTDEVICE=1 5 | 6 | all: $(CONTIKI_PROJECT) 7 | 8 | CONTIKI = ../../.. 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /examples/nrf52dk/timer-test/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = timer-test 2 | 3 | CONTIKI_WITH_RPL=0 4 | NRF52_WITHOUT_SOFTDEVICE=1 5 | 6 | all: $(CONTIKI_PROJECT) 7 | 8 | CONTIKI = ../../.. 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /examples/stm32nucleo-spirit1/sensor-demo/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = sensor-demo 2 | all: $(CONTIKI_PROJECT) 3 | 4 | TARGET=stm32nucleo-spirit1 5 | SENSORBOARD=iks01a1 6 | 7 | CONTIKI = ../../.. 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/at-test/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI_PROJECT = at-master-test 3 | APPS = at-master 4 | all: $(CONTIKI_PROJECT) 5 | 6 | CONTIKI = ../../../.. 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/index.html: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

These pages are from a webserver running under the Contiki operating system. 3 | %! file-stats . -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/files.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

File statistics


3 | %! file-stats * 4 |
NameAccesses
5 | %!: /footer.html 6 | -------------------------------------------------------------------------------- /platform/exp5438/uart1-putchar.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "dev/uart1.h" 3 | #include "lcd.h" 4 | 5 | int 6 | putchar(int c) 7 | { 8 | uart1_writeb((char)c); 9 | 10 | lcd_write_char((char)c); 11 | return c; 12 | } 13 | -------------------------------------------------------------------------------- /regression-tests/03-base/code/Makefile: -------------------------------------------------------------------------------- 1 | all: test-ringbufindex 2 | 3 | CFLAGS += -D PROJECT_CONF_H=\"project-conf.h\" 4 | APPS += unit-test 5 | 6 | CONTIKI = ../../.. 7 | CONTIKI_WITH_IPV6 = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /regression-tests/11-ipv6/code/receiver/project-conf.h: -------------------------------------------------------------------------------- 1 | #undef UIP_CONF_ND6_SEND_NS 2 | #define UIP_CONF_ND6_SEND_NS 1 3 | 4 | #ifdef BUFSIZE 5 | #undef UIP_CONF_BUFFER_SIZE 6 | #define UIP_CONF_BUFFER_SIZE BUFSIZE 7 | #endif /* BUFSIZE */ 8 | -------------------------------------------------------------------------------- /regression-tests/11-ipv6/code/sender/project-conf.h: -------------------------------------------------------------------------------- 1 | #undef UIP_CONF_ND6_SEND_NS 2 | #define UIP_CONF_ND6_SEND_NS 1 3 | 4 | #ifdef BUFSIZE 5 | #undef UIP_CONF_BUFFER_SIZE 6 | #define UIP_CONF_BUFFER_SIZE BUFSIZE 7 | #endif /* BUFSIZE */ 8 | -------------------------------------------------------------------------------- /regression-tests/23-rpl-non-storing/code/Makefile: -------------------------------------------------------------------------------- 1 | all: sender-node receiver-node root-node 2 | CONTIKI=../../.. 3 | 4 | CFLAGS+=-DPROJECT_CONF_H=\"project-conf.h\" 5 | 6 | CONTIKI_WITH_IPV6 = 1 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /tools/coffee-manager/esb.properties: -------------------------------------------------------------------------------- 1 | name_length 16 2 | fs_size 32704 3 | sector_size 64 4 | page_size 64 5 | start_offset 64 6 | default_file_size 1024 7 | default_log_size 256 8 | use_micro_logs true 9 | page_type_size 2 10 | -------------------------------------------------------------------------------- /examples/cc2538-common/mqtt-demo/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | all: mqtt-demo 4 | 5 | CONTIKI_WITH_IPV6 = 1 6 | 7 | APPS += mqtt 8 | 9 | CONTIKI = ../../.. 10 | include $(CONTIKI)/Makefile.include 11 | -------------------------------------------------------------------------------- /examples/cc26xx/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI_PROJECT = cc26xx-demo 3 | 4 | all: $(CONTIKI_PROJECT) 5 | 6 | CONTIKI_WITH_IPV6 = 1 7 | 8 | CONTIKI = ../.. 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /examples/er-rest-example/in6addr.patch: -------------------------------------------------------------------------------- 1 | 21,23c21 2 | < #ifdef __INSIDE_CYGWIN__ 3 | < uint32_t __s6_addr32[4]; 4 | < #endif 5 | --- 6 | > u_int __s6_addr32[4]; 7 | 36d33 8 | < #ifdef __INSIDE_CYGWIN__ 9 | 39d35 10 | < #endif 11 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/process.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

System processes


3 | %! processes 4 |
IDNameThreadProcess state
5 | %! file-stats . 6 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/process.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

System processes


3 | %! processes 4 |
IDNameThreadProcess state
5 | %! file-stats . 6 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/files.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

File statistics


3 | %! file-stats * 4 |
NameAccesses
5 | %!: /footer.html 6 | -------------------------------------------------------------------------------- /apps/webserver/httpd-fs/status.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Addresses

3 | %! addresses 4 |

Neighbors

5 | %! neighbors 6 |

Routes

7 | %! routes 8 |

Sensors

9 | %! sensors 10 | 11 | %! file-stats . 12 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/openocd/openocd_flash: -------------------------------------------------------------------------------- 1 | poll 2 | mww 0xffffff64 0x5a000004 3 | sleep 250 4 | mww 0xffffff64 0x5a002004 5 | sleep 250 6 | flash probe 0 7 | flash write 0 /tmp/openocd_write.bin 0x0 8 | reset run 9 | sleep 500 10 | shutdown 11 | -------------------------------------------------------------------------------- /cpu/cc26xx-cc13xx/Makefile.cc13xx: -------------------------------------------------------------------------------- 1 | TI_XXWARE_PATH = lib/cc13xxware 2 | 3 | CONTIKI_CPU_SOURCEFILES += smartrf-settings.c prop-mode.c prop-mode-tx-power.c 4 | 5 | CFLAGS += -DCPU_FAMILY_CC13XX=1 6 | 7 | include $(CONTIKI_CPU)/Makefile.cc26xx-cc13xx 8 | -------------------------------------------------------------------------------- /examples/cc2538dk/udp-ipv6-echo-server/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = udp-echo-server 2 | 3 | all: $(CONTIKI_PROJECT) 4 | 5 | CONTIKI = ../../.. 6 | CONTIKI_WITH_IPV6 = 1 7 | CFLAGS += -DUIP_CONF_ND6_SEND_NS=1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/jn516x/tsch/simple-sensor-network/rpl-border-router/README.md: -------------------------------------------------------------------------------- 1 | rpl-border-router has been configured and tested to run on a JN5168-dongle in combination 2 | with the NXP IoT Gateway. This requires the baud rate to be configured on 230400Bd. 3 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/rtcc/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI_PROJECT = test-rtcc 3 | 4 | TARGET = zoul 5 | 6 | all: $(CONTIKI_PROJECT) 7 | 8 | CONTIKI = ../../../.. 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/upload.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /platform/zoul/remote-reva/Makefile.remote-reva: -------------------------------------------------------------------------------- 1 | MOTELIST_ZOLERTIA = remote 2 | BOARD_SOURCEFILES += board.c antenna-sw.c mmc-arch.c rtcc.c power-mgmt.c leds-arch.c 3 | 4 | MODULES += lib/fs/fat lib/fs/fat/option platform/zoul/fs/fat dev/disk/mmc 5 | -------------------------------------------------------------------------------- /platform/zoul/remote-revb/Makefile.remote-revb: -------------------------------------------------------------------------------- 1 | MOTELIST_ZOLERTIA = remote 2 | BOARD_SOURCEFILES += board.c antenna-sw.c mmc-arch.c rtcc.c leds-res-arch.c power-mgmt.c 3 | 4 | MODULES += lib/fs/fat lib/fs/fat/option platform/zoul/fs/fat dev/disk/mmc 5 | -------------------------------------------------------------------------------- /tools/coffee-manager/sky.properties: -------------------------------------------------------------------------------- 1 | name_length 16 2 | fs_size 983040 3 | sector_size 65536 4 | page_size 256 5 | start_offset 65536 6 | default_file_size 4096 7 | default_log_size 1024 8 | use_micro_logs true 9 | page_type_size 2 10 | -------------------------------------------------------------------------------- /tools/cooja/apps/serial_socket/cooja.config: -------------------------------------------------------------------------------- 1 | org.contikios.cooja.Cooja.PLUGINS = + org.contikios.cooja.serialsocket.SerialSocketClient org.contikios.cooja.serialsocket.SerialSocketServer 2 | org.contikios.cooja.Cooja.JARFILES = + serial_socket.jar 3 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/processes.shtml: -------------------------------------------------------------------------------- 1 | %! header 2 |

System processes


3 | 4 | %! processes 5 |
IDNameThreadProcess state
6 | %! file-stats . 7 | -------------------------------------------------------------------------------- /examples/cc2538-common/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI_PROJECT = test-pwm timer-test test-uart 3 | 4 | all: $(CONTIKI_PROJECT) 5 | 6 | CONTIKI = ../.. 7 | CONTIKI_WITH_RIME = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/cc2538-common/crypto/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = ecb-test cbc-test ctr-test cbc-mac-test gcm-test ccm-test 2 | CONTIKI_PROJECT += sha256-test 3 | 4 | all: $(CONTIKI_PROJECT) 5 | 6 | CONTIKI = ../../.. 7 | include $(CONTIKI)/Makefile.include 8 | -------------------------------------------------------------------------------- /examples/extended-rf-api/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | CONTIKI_PROJECT = extended-rf-api 4 | 5 | all: $(CONTIKI_PROJECT) 6 | 7 | CONTIKI = ../.. 8 | CONTIKI_WITH_RIME = 1 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /examples/openmote-cc2538/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | CONTIKI_PROJECT = openmote-demo 4 | 5 | all: $(CONTIKI_PROJECT) 6 | 7 | CONTIKI = ../.. 8 | CONTIKI_WITH_RIME = 1 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/upload.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 |
-------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/upload.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 |
-------------------------------------------------------------------------------- /examples/zolertia/zoul/cc1200-demo/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI_PROJECT = cc1200-demo 3 | 4 | all: $(CONTIKI_PROJECT) 5 | 6 | CONTIKI = ../../../.. 7 | CONTIKI_WITH_RIME = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/upload.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /apps/webserver/httpd-fs/tcp.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Current connections


3 | 4 | %! tcp-connections 5 | %!: /footer.html -------------------------------------------------------------------------------- /apps/webserver/httpd-fs/upload.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/antelope/netdb/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI = ../../../ 2 | APPS += antelope 3 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 4 | SMALL = 1 5 | 6 | all: netdb-client netdb-server 7 | 8 | CONTIKI_WITH_RIME = 1 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /examples/nrf52dk/mqtt-demo/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | all: mqtt-demo 4 | 5 | CONTIKI_WITH_IPV6 = 1 6 | CONTIKI_WITH_RPL = 0 7 | 8 | APPS += mqtt 9 | 10 | CONTIKI=../../.. 11 | include $(CONTIKI)/Makefile.include 12 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/processes.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

System processes


LocalRemoteStateRetransmissionsTimerFlags
3 | %! processes 4 |
IDNameThreadProcess state
5 | %! file-stats . 6 | -------------------------------------------------------------------------------- /apps/powertrace/Makefile.powertrace: -------------------------------------------------------------------------------- 1 | powertrace_src = powertrace.c 2 | ifndef POWERTRACE_TOOLS_MAKEFILE_INCLUDED 3 | POWERTRACE_TOOLS_MAKEFILE_INCLUDED = 1 4 | -include $(CONTIKI)/tools/powertrace/Makefile.powertrace 5 | endif #POWERTRACE_TOOLS_MAKEFILE_INCLUDED 6 | -------------------------------------------------------------------------------- /cpu/arm/common/dbg-io/dbg-puts.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | int 6 | puts(const char *str) 7 | { 8 | dbg_send_bytes((unsigned char*)str, strlen(str)); 9 | dbg_putchar('\n'); 10 | return 0; 11 | } 12 | -------------------------------------------------------------------------------- /cpu/mc1322x/lib/Makefile.lib: -------------------------------------------------------------------------------- 1 | # -*- makefile -*- 2 | 3 | CFLAGS += -I$(LIBMC1322X)/include 4 | 5 | LIBOBJS = $(patsubst %.c,%.o,$(wildcard $(LIBMC1322X)/*.c)) 6 | 7 | $(LIBMC1322X)/libmc1322x.a: $(LIBOBJS) 8 | $(AR) rcs $(LIBMC1322X)/libmc1322x.a $(LIBOBJS) 9 | -------------------------------------------------------------------------------- /examples/antelope/shell/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI = ../../../ 2 | 3 | APPS += antelope unit-test 4 | 5 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 6 | SMALL = 1 7 | 8 | all: shell-db 9 | 10 | CONTIKI_WITH_RIME = 1 11 | include $(CONTIKI)/Makefile.include 12 | -------------------------------------------------------------------------------- /examples/cc2530dk/cc2531-usb-demo/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = cc2531-usb-demo 2 | 3 | DEFINES+=MODELS_CONF_CC2531_USB_STICK=1 4 | 5 | all: $(CONTIKI_PROJECT) 6 | 7 | CONTIKI = ../../.. 8 | CONTIKI_WITH_RIME = 1 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /examples/econotag-flash-test/README: -------------------------------------------------------------------------------- 1 | Its important to use -l as a flash parameter for mc1322xload. 2 | 3 | Use "make flash" to start upload. Maybe u need 4 | to change the location of libmc1322x in Makefile. 5 | 6 | With "make clear" you can erase all flash data. 7 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/rev-a/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | CONTIKI_PROJECT = test-power-mgmt 4 | 5 | all: $(CONTIKI_PROJECT) 6 | 7 | CONTIKI = ../../../.. 8 | CONTIKI_WITH_RIME = 1 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/processes.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

System processes


3 | %! processes 4 |
IDNameThreadProcess state
5 | %! file-stats . 6 | -------------------------------------------------------------------------------- /examples/fat/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI = ../.. 3 | 4 | all: example-fat 5 | 6 | CONTIKI_WITH_RIME = 1 7 | 8 | ifeq ($(TARGET), zoul) 9 | BOARD ?= remote-revb 10 | endif 11 | 12 | include $(CONTIKI)/Makefile.include 13 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/tcp.shtml: -------------------------------------------------------------------------------- 1 | %! header.html 2 |

Current connections


3 | 4 | %! tcp-connections 5 |
LocalRemoteStateRetransmissionsTimerFlags
6 | %! file-stats . -------------------------------------------------------------------------------- /examples/jn516x/rime/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI=../../.. 2 | CONTIKI_PROJECT = node 3 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 4 | 5 | TARGET ?= jn516x 6 | 7 | CONTIKI_WITH_RIME = 1 8 | 9 | all: $(CONTIKI_PROJECT) 10 | 11 | include $(CONTIKI)/Makefile.include 12 | -------------------------------------------------------------------------------- /examples/rime-tsch/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI=../.. 2 | CONTIKI_PROJECT = node 3 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 4 | 5 | CONTIKI_WITH_RIME = 1 6 | MODULES += core/net/mac/tsch 7 | 8 | all: $(CONTIKI_PROJECT) 9 | 10 | include $(CONTIKI)/Makefile.include 11 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/status.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Addresses

3 | %! addresses 4 |

Neighbors

5 | %! neighbors 6 |

Routes

7 | %! routes 8 |

Sensors

9 | %! sensors 10 | 11 | %! file-stats . 12 | -------------------------------------------------------------------------------- /platform/srf06-cc26xx/srf06/cc26xx/Makefile.cc26xx: -------------------------------------------------------------------------------- 1 | ### Will allow the inclusion of the correct CPU makefile 2 | CPU_FAMILY = cc26xx 3 | 4 | ### Include the common makefile 5 | include $(PLATFORM_ROOT_DIR)/srf06/Makefile.srf06 6 | 7 | CONTIKI_TARGET_DIRS += srf06/cc26xx 8 | -------------------------------------------------------------------------------- /tools/sky/serial/Makefile.am: -------------------------------------------------------------------------------- 1 | AUTOMAKE_OPTIONS = foreign 2 | 3 | tinyoslibdir=$(libdir)/tinyos 4 | serialdir=$(tinyoslibdir)/serial 5 | 6 | serial_DATA = __init__.py \ 7 | serialjava.py \ 8 | serialposix.py \ 9 | serialutil.py \ 10 | serialwin32.py 11 | -------------------------------------------------------------------------------- /tools/z80/java/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/upload.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
7 | 8 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/tcp.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Current connections


3 | %! tcp-connections 4 |
LocalRemoteStateRetransmissionsTimerFlags
5 | %! file-stats . -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/tcp.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Current connections


3 | %! tcp-connections 4 |
LocalRemoteStateRetransmissionsTimerFlags
5 | %! file-stats . -------------------------------------------------------------------------------- /examples/avr-rss2/avr_radio_power/Makefile: -------------------------------------------------------------------------------- 1 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 2 | 3 | CONTIKI_PROJECT = avr_radio_power 4 | APPS+=powertrace 5 | all: $(CONTIKI_PROJECT) 6 | 7 | CONTIKI = ../../.. 8 | CONTIKI_WITH_RIME = 1 9 | include $(CONTIKI)/Makefile.include 10 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Huginn/status.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

My Addresses

3 | %! addresses 4 |

My close friends

5 | %! neighbors 6 |

My other friends

7 | %! routes 8 |

My Sensors

9 | %! sensors 10 | 11 | %! file-stats . 12 | -------------------------------------------------------------------------------- /examples/webserver-ipv6-raven/Muninn/status.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

My Addresses

3 | %! addresses 4 |

My close friends

5 | %! neighbors 6 |

My other friends

7 | %! routes 8 |

My Sensors

9 | %! sensors 10 | 11 | %! file-stats . 12 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/status.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Addresses

3 | %! addresses 4 |

Neighbors

5 | %! neighbors 6 |

Routes

7 | %! routes 8 |

Sensors

9 | %! sensors 10 | 11 | %! file-stats . 12 | -------------------------------------------------------------------------------- /platform/srf06-cc26xx/srf06/cc13xx/Makefile.cc13xx: -------------------------------------------------------------------------------- 1 | ### Will allow the inclusion of the correct CPU makefile 2 | CPU_FAMILY = cc13xx 3 | 4 | ### Include the common sensortag makefile 5 | include $(PLATFORM_ROOT_DIR)/srf06/Makefile.srf06 6 | 7 | CONTIKI_TARGET_DIRS += srf06/cc13xx 8 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/tcp.shtml: -------------------------------------------------------------------------------- 1 | %! header.html 2 |

Current connections


3 | 4 | %! tcp-connections 5 |
LocalRemoteStateRetransmissionsTimerFlags
6 | %! file-stats . -------------------------------------------------------------------------------- /cpu/mc1322x/debug-uart.c: -------------------------------------------------------------------------------- 1 | #include "contiki-conf.h" 2 | 3 | unsigned int 4 | dbg_send_bytes(const unsigned char *s, unsigned int len) 5 | { 6 | unsigned int i=0; 7 | while(s && *s!=0) { 8 | if( i >= len) { break; } 9 | dbg_putchar(*s++); i++; 10 | } 11 | return i; 12 | } 13 | -------------------------------------------------------------------------------- /examples/servreg-hack/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = example-servreg-client 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS=servreg-hack 5 | CONTIKI = ../.. 6 | CONTIKI_WITH_IPV6 = 1 7 | include $(CONTIKI)/Makefile.include 8 | -include /home/user/nes/testbed-scripts/Makefile.include 9 | 10 | -------------------------------------------------------------------------------- /platform/avr-raven/apps/raven-webserver/httpd-fs/tcp.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Current connections


3 | %! tcp-connections 4 |
LocalRemoteStateRetransmissionsTimerFlags
5 | %! file-stats . -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/io.h: -------------------------------------------------------------------------------- 1 | #ifndef IO_H_7UTLUP9AG6__ 2 | #define IO_H_7UTLUP9AG6__ 3 | 4 | #include 5 | 6 | 7 | #ifndef BV 8 | #define BV(x) (1<<(x)) 9 | #endif 10 | 11 | int splhigh(void); 12 | 13 | void splx(int saved); 14 | 15 | #endif /* IO_H_7UTLUP9AG6__ */ 16 | -------------------------------------------------------------------------------- /cpu/stm32w108/hal/micro/cortexm3/mpu.h: -------------------------------------------------------------------------------- 1 | /** @file hal/micro/cortexm3/mpu.h 2 | * 3 | * 4 | */ 5 | 6 | 7 | #ifndef MPU_H_ 8 | #define MPU_H_ 9 | 10 | #define BYPASS_MPU(blah) blah 11 | 12 | #endif//MPU_H_ 13 | -------------------------------------------------------------------------------- /examples/udp-stream/Makefile: -------------------------------------------------------------------------------- 1 | all: udp-stream 2 | APPS = servreg-hack 3 | CONTIKI = ../.. 4 | 5 | ifndef TARGET 6 | TARGET = sky 7 | endif 8 | 9 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 10 | SMALL = 1 11 | 12 | CONTIKI_WITH_IPV6 = 1 13 | include $(CONTIKI)/Makefile.include 14 | -------------------------------------------------------------------------------- /platform/galileo/bsp/docker/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:16.04 2 | RUN apt-get update \ 3 | && apt-get install -y \ 4 | gcc-multilib g++-multilib git make patch texinfo uuid-dev wget \ 5 | && rm -rf /var/lib/apt/lists/* 6 | WORKDIR /contiki 7 | ENV TARGET galileo 8 | CMD ["/bin/bash", "-l"] 9 | -------------------------------------------------------------------------------- /platform/zoul/orion/Makefile.orion: -------------------------------------------------------------------------------- 1 | MOTELIST_ZOLERTIA = orion 2 | MODULES += dev/enc28j60 3 | CC2538_ENC28J60_ARCH ?= gpio 4 | WITH_IP64 ?= 1 5 | CFLAGS += -DUIP_FALLBACK_INTERFACE=ip64_uip_fallback_interface 6 | BOARD_SOURCEFILES += board.c enc28j60-arch-$(CC2538_ENC28J60_ARCH).c leds-arch.c 7 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/status.shtml: -------------------------------------------------------------------------------- 1 | %! header 2 |
Addresses
 3 | %! addresses
 4 | 
 5 | Neighbors
 6 | %! neighbors
 7 | 
 8 | Routes
 9 | %! routes
10 | 
11 | Sensors
12 | %! sensors
13 | 
14 | %! file-stats . -------------------------------------------------------------------------------- /cpu/mc1322x/tools/ftditools/Makefile: -------------------------------------------------------------------------------- 1 | INSTALL= /usr/local/bin 2 | 3 | ################ 4 | 5 | LDLIBS = -lftdi 6 | 7 | TARGETS = bbmc 8 | 9 | CFLAGS = -Wall -Wextra #-Werror 10 | 11 | all: $(TARGETS) 12 | 13 | clean: 14 | -rm -f $(TARGETS) 15 | 16 | install: all 17 | cp bbmc $(INSTALL) -------------------------------------------------------------------------------- /cpu/msp430/dev/uart0-putchar.c: -------------------------------------------------------------------------------- 1 | #include "dev/uart0.h" 2 | 3 | #if !NETSTACK_CONF_WITH_IPV4 4 | /* In case of IPv4: putchar() is defined by the SLIP driver */ 5 | int 6 | putchar(int c) 7 | { 8 | uart0_writeb((char)c); 9 | return c; 10 | } 11 | #endif /* ! NETSTACK_CONF_WITH_IPV4 */ 12 | -------------------------------------------------------------------------------- /cpu/msp430/dev/uart1-putchar.c: -------------------------------------------------------------------------------- 1 | #include "dev/uart1.h" 2 | 3 | #if !NETSTACK_CONF_WITH_IPV4 4 | /* In case of IPv4: putchar() is defined by the SLIP driver */ 5 | int 6 | putchar(int c) 7 | { 8 | uart1_writeb((char)c); 9 | return c; 10 | } 11 | #endif /* ! NETSTACK_CONF_WITH_IPV4 */ 12 | -------------------------------------------------------------------------------- /examples/cfs-coffee/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI = ../.. 3 | 4 | all: test-cfs test-coffee example-coffee 5 | 6 | CONTIKI_WITH_RIME = 1 7 | 8 | ifeq ($(TARGET),avr-raven) 9 | COFFEE_FILES = 4 10 | endif 11 | 12 | include $(CONTIKI)/Makefile.include 13 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/rev-b/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | CONTIKI_PROJECT = test-power-mgmt 4 | 5 | BOARD ?= remote-revb 6 | 7 | all: $(CONTIKI_PROJECT) 8 | 9 | CONTIKI = ../../../.. 10 | CONTIKI_WITH_RIME = 1 11 | include $(CONTIKI)/Makefile.include 12 | -------------------------------------------------------------------------------- /platform/avr-atmega128rfa1/apps/raven-webserver/httpd-fs/tcp.shtml: -------------------------------------------------------------------------------- 1 | %!: /header.html 2 |

Current connections


3 | %! tcp-connections 4 |
LocalRemoteStateRetransmissionsTimerFlags
5 | %! file-stats . -------------------------------------------------------------------------------- /cpu/nrf52832/ld/nrf52.ld: -------------------------------------------------------------------------------- 1 | /* Linker script to configure memory regions. */ 2 | 3 | SEARCH_DIR(.) 4 | GROUP(-lgcc -lc -lnosys) 5 | 6 | MEMORY 7 | { 8 | FLASH (rx) : ORIGIN = 0x0, LENGTH = 0x80000 9 | RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x8000 10 | } 11 | 12 | INCLUDE "nrf5x_common.ld" -------------------------------------------------------------------------------- /examples/avr-rss2/hello-sensors/README.md: -------------------------------------------------------------------------------- 1 | Hello-sensors 2 | ============= 3 | 4 | Simple demo to read out sensors from the RSS2 mote. 5 | 6 | Demo uses double which has the same size as float on Atmel. We sacrifice 7 | some bytes for this. 8 | 9 | Build 10 | ----- 11 | make TARGET=avr-rss2 12 | -------------------------------------------------------------------------------- /examples/avr-rss2/ipv6/sensd_client/Makefile: -------------------------------------------------------------------------------- 1 | 2 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 3 | 4 | all: sensd_client server 5 | CONTIKI=../../../.. 6 | 7 | ifdef PERIOD 8 | CFLAGS+=-DPERIOD=$(PERIOD) 9 | endif 10 | 11 | CONTIKI_WITH_IPV6 = 1 12 | include $(CONTIKI)/Makefile.include 13 | -------------------------------------------------------------------------------- /examples/openmote-cc2538/openmote-demo.gdb: -------------------------------------------------------------------------------- 1 | target remote localhost:2331 2 | monitor interface JTAG 3 | monitor endian little 4 | monitor speed auto 5 | monitor flash device = CC2538SF53 6 | monitor flash breakpoints = 1 7 | monitor flash download = 1 8 | monitor reset 9 | load 10 | continue 11 | -------------------------------------------------------------------------------- /examples/sky-shell/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = sky-shell 2 | all: $(CONTIKI_PROJECT) 3 | 4 | APPS = serial-shell powertrace collect-view 5 | CONTIKI = ../.. 6 | 7 | CONTIKI_WITH_RIME = 1 8 | include $(CONTIKI)/Makefile.include 9 | -include /home/user/nes/testbed-scripts/Makefile.include 10 | 11 | -------------------------------------------------------------------------------- /platform/micaz/buildscripts/Makefile.mib510: -------------------------------------------------------------------------------- 1 | %.upload: %.srec 2 | uisp -dprog=mib510 -dserial=$(PORT) -dpart=ATmega128 --wr_fuse_h=0xd1 --wr_fuse_e=ff --erase --upload if=$< --verify 3 | 4 | erase: 5 | uisp -dprog=mib510 -dserial=$(PORT) -dpart=ATmega128 --wr_fuse_h=0xd9 --wr_fuse_e=ff --erase 6 | -------------------------------------------------------------------------------- /platform/native/dev/pir-sensor.h: -------------------------------------------------------------------------------- 1 | #ifndef PIR_SENSOR_H_ 2 | #define PIR_SENSOR_H_ 3 | 4 | #include "lib/sensors.h" 5 | 6 | extern const struct sensors_sensor pir_sensor; 7 | 8 | #define PIR_SENSOR "PIR" 9 | 10 | void pir_sensor_changed(int strength); 11 | 12 | #endif /* PIR_SENSOR_H_ */ 13 | -------------------------------------------------------------------------------- /apps/email/smtp-strings: -------------------------------------------------------------------------------- 1 | smtp_220 "220" 2 | smtp_helo "HELO " 3 | smtp_mail_from "MAIL FROM: " 4 | smtp_rcpt_to "RCPT TO: " 5 | smtp_data "DATA\r\n" 6 | smtp_to "To: " 7 | smtp_from "From: " 8 | smtp_subject "Subject: " 9 | smtp_quit "QUIT\r\n" 10 | smtp_crnl "\r\n" 11 | smtp_crnlperiodcrnl "\r\n.\r\n" -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/header.html: -------------------------------------------------------------------------------- 1 | Contiki-nano
Front page|Status|Network connections|System processes|File statistics
2 | -------------------------------------------------------------------------------- /cpu/mc1322x/CREDITS: -------------------------------------------------------------------------------- 1 | MC13224v library code, test routines, and handy tools 2 | 3 | http://mc1322x.devl.org 4 | Mariano Alvira mar@devl.org 5 | 6 | Parts of the build system came from U-boot and Darrel Harmon's 7 | "darrell's loader" for the AT91RM9200. Other parts from the Contiki 8 | OS. 9 | 10 | -------------------------------------------------------------------------------- /cpu/mc1322x/tools/run-kermit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/kermit + 2 | 3 | echo "Opening \%1 at \%2 baud..." 4 | 5 | set line \%1 6 | if failure { echo "Couldn't open \%1" , exit } 7 | set carrier-watch off 8 | set flow-control none 9 | set speed \%2 10 | set serial 8n1 11 | set key \127 \8 12 | connect 13 | quit 14 | -------------------------------------------------------------------------------- /examples/avr-rss2/ipv6/sensd_client/README.md: -------------------------------------------------------------------------------- 1 | Contiki client for sensd 2 | ======================== 3 | 4 | 5 | Contiki client connects to: 6 | "sensd - A WSN Internet GW, hub, agent, proxy & cloud" 7 | 8 | For full sensd documentation and code see: 9 | https://github.com/herjulf/sensd 10 | 11 | -------------------------------------------------------------------------------- /examples/ipv6/multicast/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | CONTIKI_PROJECT = root intermediate sink 4 | all: $(CONTIKI_PROJECT) 5 | 6 | CONTIKI = ../../.. 7 | 8 | MODULES += core/net/ipv6/multicast 9 | 10 | CONTIKI_WITH_IPV6 = 1 11 | include $(CONTIKI)/Makefile.include 12 | -------------------------------------------------------------------------------- /examples/jn516x/dr1175-sensors/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI=../../.. 2 | CONTIKI_PROJECT = node 3 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 4 | 5 | TARGET ?= jn516x 6 | JN516x_WITH_DR1175 = 1 7 | 8 | CONTIKI_WITH_RIME = 1 9 | 10 | all: $(CONTIKI_PROJECT) 11 | 12 | include $(CONTIKI)/Makefile.include 13 | -------------------------------------------------------------------------------- /examples/llsec/ccm-star-tests/encryption/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = tests 2 | all: $(CONTIKI_PROJECT) 3 | 4 | CONTIKI = ../../../.. 5 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 6 | 7 | #linker optimizations 8 | SMALL=1 9 | 10 | CONTIKI_WITH_IPV6 = 1 11 | include $(CONTIKI)/Makefile.include 12 | -------------------------------------------------------------------------------- /platform/native/dev/button-sensor.h: -------------------------------------------------------------------------------- 1 | #ifndef BUTTON_SENSOR_H_ 2 | #define BUTTON_SENSOR_H_ 3 | 4 | #include "lib/sensors.h" 5 | 6 | extern const struct sensors_sensor button_sensor; 7 | 8 | #define BUTTON_SENSOR "Button" 9 | 10 | void button_press(void); 11 | 12 | #endif /* BUTTON_SENSOR_H_ */ 13 | -------------------------------------------------------------------------------- /apps/codeprop/Makefile.codeprop-tmp: -------------------------------------------------------------------------------- 1 | codeprop-tmp_src = codeprop-tmp.c 2 | 3 | # Enable LARGE MEMORY MODEL supports for WISMOTE and EXP5438 platform 4 | ifeq ($(TARGET),wismote) 5 | TARGET_MEMORY_MODEL = large 6 | endif 7 | 8 | ifeq ($(TARGET),exp5438) 9 | TARGET_MEMORY_MODEL = large 10 | endif 11 | -------------------------------------------------------------------------------- /apps/collect-view/Makefile.collect-view: -------------------------------------------------------------------------------- 1 | collect-view_src = collect-view.c 2 | 3 | ifeq ($(TARGET), sky) 4 | collect-view_src += collect-view-sky.c 5 | else 6 | ifeq ($(TARGET), z1) 7 | collect-view_src += collect-view-z1.c 8 | else 9 | collect-view_src += collect-view-template.c 10 | endif 11 | endif 12 | -------------------------------------------------------------------------------- /examples/llsec/ccm-star-tests/verification/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = tests 2 | all: $(CONTIKI_PROJECT) 3 | 4 | CONTIKI = ../../../.. 5 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 6 | 7 | #linker optimizations 8 | SMALL=1 9 | 10 | CONTIKI_WITH_IPV6 = 1 11 | include $(CONTIKI)/Makefile.include 12 | -------------------------------------------------------------------------------- /platform/galileo/bsp/openocd-scripts/debug.cfg: -------------------------------------------------------------------------------- 1 | source [find interface/ftdi/flyswatter2.cfg]; 2 | source [find board/quark_x10xx_board.cfg]; 3 | 4 | quark_x10xx.cpu configure -event gdb-attach { 5 | halt 6 | } 7 | 8 | quark_x10xx.cpu configure -event gdb-detach { 9 | resume 10 | shutdown 11 | } 12 | -------------------------------------------------------------------------------- /apps/er-coap/Makefile.er-coap: -------------------------------------------------------------------------------- 1 | er-coap_src = er-coap.c er-coap-engine.c er-coap-transactions.c \ 2 | er-coap-observe.c er-coap-separate.c er-coap-res-well-known-core.c \ 3 | er-coap-block1.c er-coap-observe-client.c 4 | 5 | # Erbium will implement the REST Engine 6 | CFLAGS += -DREST=coap_rest_implementation 7 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/status.shtml: -------------------------------------------------------------------------------- 1 | %! header 2 |
Addresses
 3 | %! addresses
 4 | 
 5 | Neighbors
 6 | %! neighbors
 7 | 
 8 | Routes
 9 | %! routes
10 | 
11 | Sensors
12 | %! sensors
13 | 
14 | %! file-stats . -------------------------------------------------------------------------------- /cpu/nrf52832/ld/nrf52-pca10036-sd.ld: -------------------------------------------------------------------------------- 1 | /* Linker script to configure memory regions. */ 2 | 3 | SEARCH_DIR(.) 4 | GROUP(-lgcc -lc -lnosys) 5 | 6 | MEMORY 7 | { 8 | FLASH (rx) : ORIGIN = 0x1f000, LENGTH = 0x61000 9 | RAM (rwx) : ORIGIN = 0x08000000, LENGTH = 0x8000 10 | } 11 | 12 | INCLUDE "nrf5x_common.ld" -------------------------------------------------------------------------------- /cpu/nrf52832/ld/nrf52-pca10040-sd.ld: -------------------------------------------------------------------------------- 1 | /* Linker script to configure memory regions. */ 2 | 3 | SEARCH_DIR(.) 4 | GROUP(-lgcc -lc -lnosys) 5 | 6 | MEMORY 7 | { 8 | FLASH (rx) : ORIGIN = 0x1f000, LENGTH = 0x61000 9 | RAM (rwx) : ORIGIN = 0x20002800, LENGTH = 0xD800 10 | } 11 | 12 | INCLUDE "nrf5x_common.ld" -------------------------------------------------------------------------------- /examples/cc26xx/very-sleepy-demo/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI_PROJECT = very-sleepy-demo 3 | 4 | all: $(CONTIKI_PROJECT) 5 | 6 | CONTIKI_WITH_IPV6 = 1 7 | 8 | APPS += er-coap 9 | APPS += rest-engine 10 | 11 | CONTIKI = ../../.. 12 | include $(CONTIKI)/Makefile.include 13 | -------------------------------------------------------------------------------- /examples/rime/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI = ../.. 2 | 3 | all: example-abc example-mesh example-collect example-trickle example-polite \ 4 | example-rudolph1 example-rudolph2 example-rucb \ 5 | example-runicast example-unicast example-neighbors 6 | 7 | CONTIKI_WITH_RIME = 1 8 | include $(CONTIKI)/Makefile.include 9 | -------------------------------------------------------------------------------- /examples/ipv6/slip-radio/README.md: -------------------------------------------------------------------------------- 1 | This project is intended to run on a mode that is connected to a native host system 2 | by SLIP. The SLIP is really SERIAL LINE 15.4, as this just turns the mote into a smart 3 | radio, running the RPL and 6lowpan stack on the Host. This goes with native-border-router. 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/seedeye/powerswitch/Makefile: -------------------------------------------------------------------------------- 1 | ifndef TARGET 2 | TARGET=seedeye 3 | endif 4 | 5 | all: remotepowerswitch 6 | 7 | CONTIKI=../../../ 8 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 9 | 10 | APPS += er-coap 11 | APPS += rest-engine 12 | 13 | CONTIKI_WITH_IPV6 = 1 14 | include $(CONTIKI)/Makefile.include 15 | -------------------------------------------------------------------------------- /tools/freebsd-6-setup-slip: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # A small script for setting up SLIP under FreeBSD 4 | killall slattach 5 | #stty -f /dev/cuaa0 19200 6 | slattach -l -s 57600 /dev/cuad0 7 | sleep 1 8 | ifconfig sl0 172.16.0.1 172.16.0.2 9 | route delete 172.16.0.0/16 10 | route add -net 172.16.0.0/16 172.16.0.2 11 | -------------------------------------------------------------------------------- /platform/srf06-cc26xx/launchpad/cc1310/Makefile.cc1310: -------------------------------------------------------------------------------- 1 | ### Will allow the inclusion of the correct CPU makefile 2 | CPU_FAMILY = cc13xx 3 | 4 | ### Add to the source dirs 5 | CONTIKI_TARGET_DIRS += launchpad/cc1310 6 | 7 | ### Include the common launchpad makefile 8 | include $(PLATFORM_ROOT_DIR)/launchpad/Makefile.launchpad 9 | -------------------------------------------------------------------------------- /platform/srf06-cc26xx/launchpad/cc2650/Makefile.cc2650: -------------------------------------------------------------------------------- 1 | ### Will allow the inclusion of the correct CPU makefile 2 | CPU_FAMILY = cc26xx 3 | 4 | ### Add to the source dirs 5 | CONTIKI_TARGET_DIRS += launchpad/cc2650 6 | 7 | ### Include the common launchpad makefile 8 | include $(PLATFORM_ROOT_DIR)/launchpad/Makefile.launchpad 9 | -------------------------------------------------------------------------------- /platform/srf06-cc26xx/srf06/Makefile.srf06: -------------------------------------------------------------------------------- 1 | CFLAGS += -DBOARD_SMARTRF06EB=1 2 | 3 | CONTIKI_TARGET_DIRS += srf06 4 | 5 | BOARD_SOURCEFILES += leds-arch.c srf06-sensors.c button-sensor.c board.c 6 | BOARD_SOURCEFILES += als-sensor.c 7 | 8 | ### Signal that we can be programmed with cc2538-bsl 9 | BOARD_SUPPORTS_BSL=1 10 | -------------------------------------------------------------------------------- /doc/apps.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * \defgroup apps Applications 3 | * 4 | * Contiki provides a set of apps that provide functionalities such as a 5 | * web server. 6 | * 7 | * To include an App in your software project specify in you makefile 8 | @code 9 | APPS = list of apps 10 | @endcode 11 | * 12 | * @{ */ 13 | /** @} */ 14 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/orion/client/Makefile: -------------------------------------------------------------------------------- 1 | CFLAGS+=-DPROJECT_CONF_H=\"project-conf.h\" 2 | CONTIKI_PROJECT = client ifttt_client 3 | all: $(CONTIKI_PROJECT) 4 | 5 | BOARD = orion 6 | 7 | MODULES += core/net/http-socket 8 | 9 | WITH_IP64 = 1 10 | 11 | CONTIKI = ../../../../.. 12 | include $(CONTIKI)/Makefile.include 13 | -------------------------------------------------------------------------------- /regression-tests/27-tsch/code/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | 3 | CFLAGS += -D PROJECT_CONF_H=\"project-conf.h\" 4 | APPS += unit-test 5 | MODULES += core/net/mac/tsch core/net/mac/tsch/sixtop 6 | 7 | PROJECT_SOURCEFILES += common.c 8 | 9 | CONTIKI = ../../.. 10 | CONTIKI_WITH_IPV6 = 1 11 | include $(CONTIKI)/Makefile.include 12 | -------------------------------------------------------------------------------- /apps/oma-lwm2m/Makefile.oma-lwm2m: -------------------------------------------------------------------------------- 1 | oma-lwm2m_src = \ 2 | lwm2m-object.c \ 3 | lwm2m-engine.c \ 4 | lwm2m-device.c \ 5 | lwm2m-server.c \ 6 | lwm2m-security.c \ 7 | oma-tlv.c \ 8 | oma-tlv-reader.c \ 9 | oma-tlv-writer.c \ 10 | lwm2m-plain-text.c \ 11 | lwm2m-json.c \ 12 | # 13 | CFLAGS += -DHAVE_OMA_LWM2M=1 14 | -------------------------------------------------------------------------------- /examples/mbxxx/mbxxx-shell/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = mbxxx-shell 2 | 3 | PROJECTDIRS = $(CONTIKI)/platform/mbxxx/apps 4 | 5 | APPS = serial-shell 6 | 7 | PROJECT_SOURCEFILES = shell-sensors.c 8 | 9 | all: $(CONTIKI_PROJECT) 10 | 11 | CONTIKI = ../../.. 12 | CONTIKI_WITH_RIME = 1 13 | include $(CONTIKI)/Makefile.include 14 | -------------------------------------------------------------------------------- /examples/mbxxx/telnet-server/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = telnet-server 2 | 3 | APPS = telnetd 4 | 5 | PROJECTDIRS = $(CONTIKI)/platform/mbxxx/apps 6 | PROJECT_SOURCEFILES = shell-sensors.c 7 | 8 | 9 | all: $(CONTIKI_PROJECT) 10 | 11 | CONTIKI = ../../.. 12 | CONTIKI_WITH_IPV6 = 1 13 | include $(CONTIKI)/Makefile.include 14 | -------------------------------------------------------------------------------- /platform/jn516x/dev/dongle/README.md: -------------------------------------------------------------------------------- 1 | This directory contains the contiki driver for the LED driver for the dongle. 2 | 3 | Mapping of LEDs on JN516x Dongle: 4 | leds.h led on dongle: 5 | LEDS_RED Red LED 6 | LEDS_GREEN Green LED 7 | Note: Only one LED can be switch on at the same time 8 | 9 | 10 | -------------------------------------------------------------------------------- /cpu/arm/common/usb/cdc-eth/cdc-eth.h: -------------------------------------------------------------------------------- 1 | #ifndef CDC_ETH_H_NUI0ULFC7C__ 2 | #define CDC_ETH_H_NUI0ULFC7C__ 3 | 4 | #include 5 | 6 | /* Should be called before usb_cdc_eth_setup */ 7 | void 8 | usb_cdc_eth_set_ifaddr(uip_ipaddr_t *addr); 9 | 10 | void 11 | usb_cdc_eth_setup(); 12 | 13 | #endif /* CDC_ETH_H_NUI0ULFC7C__ */ 14 | -------------------------------------------------------------------------------- /cpu/avr/dev/usb/rndis/cdc_eem.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef CDC_EEM_H_ 3 | #define CDC_EEM_H_ 4 | 5 | #include "contiki.h" 6 | #include 7 | 8 | extern void cdc_eem_process(void); 9 | extern uint8_t eem_send(uint8_t * senddata, uint16_t sendlen, uint8_t led); 10 | extern void cdc_eem_configure_endpoints(); 11 | 12 | #endif // CDC_EEM_H_ 13 | -------------------------------------------------------------------------------- /cpu/arm/common/usb/string-descriptors.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /examples/er-rest-example-raven/Makefile: -------------------------------------------------------------------------------- 1 | TARGET=avr-raven 2 | 3 | APPS += raven-lcd-interface 4 | 5 | export 6 | 7 | CONTIKI=../.. 8 | 9 | ER_REST_EXAMPLE=$(CONTIKI)/examples/er-rest-example 10 | 11 | all %: 12 | @(cd $(ER_REST_EXAMPLE) && $(MAKE) $@) 13 | @echo 14 | @echo "*** Binaries can be found in $(ER_REST_EXAMPLE) ***" 15 | 16 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/startup-SAM7S.c: -------------------------------------------------------------------------------- 1 | void 2 | Reset(void) 3 | { 4 | volatile int dummy =0; 5 | } 6 | 7 | static void 8 | Vectors(void) __attribute__ ((naked, section(".vectrom"))); 9 | 10 | static void 11 | Vectors(void) 12 | { 13 | asm("ldr pc, %0\n"::"r" (Reset)); 14 | } 15 | 16 | 17 | 18 | void foo_dummy() 19 | { 20 | Vectors(); 21 | } 22 | -------------------------------------------------------------------------------- /cpu/mc1322x/TODO: -------------------------------------------------------------------------------- 1 | - openocd flashing 2 | use run_algorithm to hook ROM NVM functions 3 | see flash/stm32x.c 4 | 5 | - add timestamp to received packets 6 | 7 | - add a way to set modes: tx_only, rx_only, txrx. (so you can be lazy 8 | and have blocks of code that don't need to handle rx packets) 9 | 10 | - beacon sync 11 | 12 | - CCA and ED. 13 | -------------------------------------------------------------------------------- /platform/srf06-cc26xx/launchpad/Makefile.launchpad: -------------------------------------------------------------------------------- 1 | CFLAGS += -DBOARD_LAUNCHPAD=1 2 | 3 | CONTIKI_TARGET_DIRS += launchpad common 4 | 5 | BOARD_SOURCEFILES += board.c launchpad-sensors.c leds-arch.c button-sensor.c 6 | BOARD_SOURCEFILES += ext-flash.c board-spi.c 7 | 8 | ### Signal that we can be programmed with cc2538-bsl 9 | BOARD_SUPPORTS_BSL=1 10 | -------------------------------------------------------------------------------- /examples/econotag-flash-test/econotag-flash-test.cfg: -------------------------------------------------------------------------------- 1 | input = "econotag-flash-test_econotag"; 2 | output = "econotag-flash-test_e_econotag"; 3 | eui = [ 0x2, 0x0, 0x0, 0x0, 0x12, 0x34, 0x56, 0x78 ]; 4 | uuid = "cbf9889f-dc0e-4c18-9aa9-93509a6c102a"; 5 | psk = "yCh0OXnSkFT-eXKE"; 6 | name = "Econotag Flash Test Device"; 7 | model = "Model 1234 for testing purposes only"; 8 | -------------------------------------------------------------------------------- /examples/zolertia/zoul/orion/ip64-router/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES += PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | all: ip64-router 4 | 5 | BOARD = orion 6 | 7 | CONTIKI = ../../../../.. 8 | 9 | WITH_IP64 = 1 10 | CONTIKI_WITH_IPV6 = 1 11 | 12 | DEFINES += UIP_CONF_TCP=1 13 | PROJECT_SOURCEFILES += httpd-simple.c 14 | 15 | include $(CONTIKI)/Makefile.include 16 | 17 | -------------------------------------------------------------------------------- /regression-tests/14-compile-8051-ports/Makefile: -------------------------------------------------------------------------------- 1 | EXAMPLESDIR=../../examples 2 | TOOLSDIR=../../tools 3 | 4 | EXAMPLES = \ 5 | hello-world/cc2530dk \ 6 | cc2530dk/cc2530dk \ 7 | cc2530dk/border-router/cc2530dk \ 8 | cc2530dk/udp-ipv6/cc2530dk \ 9 | ipv6/multicast/cc2530dk \ 10 | sensniff/cc2530dk \ 11 | 12 | TOOLS= 13 | 14 | include ../Makefile.compile-test 15 | -------------------------------------------------------------------------------- /tools/release-tools/compile-platforms/Makefile.platform: -------------------------------------------------------------------------------- 1 | all: print-version hello-world 2 | CONTIKI = ../../../.. 3 | APPS=serial-shell webserver telnetd 4 | 5 | ifeq ($(TARGET), avr-raven) 6 | CONTIKI_WITH_IPV6 = 1 7 | else 8 | CONTIKI_WITH_RIME = 1 9 | endif 10 | 11 | include $(CONTIKI)/Makefile.include 12 | print-version: 13 | @$(CC) --version || echo 14 | -------------------------------------------------------------------------------- /cpu/arm/common/usb/descriptors.h: -------------------------------------------------------------------------------- 1 | #ifndef DESCRIPTORS_H_RPFUB8O7OV__ 2 | #define DESCRIPTORS_H_RPFUB8O7OV__ 3 | 4 | #ifndef STRUCTGEN 5 | #include "usb.h" 6 | #endif 7 | 8 | extern const struct usb_st_device_descriptor device_descriptor; 9 | extern const struct usb_st_configuration_descriptor const *configuration_head; 10 | #endif /* DESCRIPTORS_H_RPFUB8O7OV__ */ 11 | -------------------------------------------------------------------------------- /cpu/avr/dev/debug.h: -------------------------------------------------------------------------------- 1 | #ifndef DEBUG_H_ 2 | #define DEBUG_H_ 3 | 4 | #if 0 5 | #define debug_print(x) 6 | #define debug_print8(x) 7 | 8 | #else 9 | 10 | #include "avr/pgmspace.h" 11 | 12 | void debug_print(char *str); 13 | 14 | void debug_print8(unsigned char v); 15 | void debug_print16(unsigned short v); 16 | #endif 17 | 18 | 19 | 20 | #endif /* DEBUG_H_ */ 21 | -------------------------------------------------------------------------------- /cpu/cc253x/usb/common/descriptors.h: -------------------------------------------------------------------------------- 1 | #ifndef DESCRIPTORS_H_RPFUB8O7OV__ 2 | #define DESCRIPTORS_H_RPFUB8O7OV__ 3 | 4 | #ifndef STRUCTGEN 5 | #include "usb.h" 6 | #endif 7 | 8 | extern const struct usb_st_device_descriptor device_descriptor; 9 | extern const struct usb_st_configuration_descriptor const *configuration_head; 10 | #endif /* DESCRIPTORS_H_RPFUB8O7OV__ */ 11 | -------------------------------------------------------------------------------- /examples/rf_environment/project-conf.h: -------------------------------------------------------------------------------- 1 | #ifndef PROJECT_CONF_H_ 2 | #define PROJECT_CONF_H_ 3 | 4 | #define NETSTACK_CONF_RDC nullrdc_driver 5 | #define NETSTACK_CONF_MAC nullmac_driver 6 | #define NETSTACK_CONF_FRAMER framer_802154 7 | #define NETSTACK_CONF_RADIO rf230_driver 8 | 9 | #define RS232_BAUDRATE USART_BAUD_38400 10 | 11 | #endif /* PROJECT_CONF_H_ */ 12 | -------------------------------------------------------------------------------- /examples/webserver/httpd-cfs/notfound.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 404 - file not found 5 | 6 | 7 | 8 |

404 - file not found 9 |

10 |

Go here instead. 11 |

12 | 13 | 14 | -------------------------------------------------------------------------------- /cpu/arm/arm.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * \defgroup cmsis CMSIS (Cortex Microcontroller Software Interface Standard) 3 | * \ingroup arm 4 | */ 5 | 6 | /** 7 | * \defgroup aducrf101 ADUCRF101 8 | * \ingroup arm 9 | */ 10 | 11 | /** 12 | * \defgroup at91sam7s AT91SAM7S 13 | * \ingroup arm 14 | */ 15 | 16 | /** 17 | * \defgroup stm32f103 STM32F103 18 | * \ingroup arm 19 | */ 20 | -------------------------------------------------------------------------------- /examples/cc2530dk/udp-ipv6/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | HAVE_BANKING=1 4 | 5 | PROJECT_SOURCEFILES += ping6.c 6 | 7 | CONTIKI_PROJECT = client server 8 | 9 | all: $(CONTIKI_PROJECT) 10 | 11 | CONTIKI = ../../.. 12 | CONTIKI_WITH_IPV6 = 1 13 | # needed for rimestats 14 | CONTIKI_WITH_RIME = 1 15 | include $(CONTIKI)/Makefile.include 16 | -------------------------------------------------------------------------------- /regression-tests/17-slip-radio/code/project-conf.h: -------------------------------------------------------------------------------- 1 | #ifndef __PROJECT_CONF_H__ 2 | #define __PROJECT_CONF_H__ 3 | 4 | #define NETSTACK_CONF_MAC csma_driver 5 | 6 | #undef NETSTACK_CONF_RDC 7 | #define NETSTACK_CONF_RDC nullrdc_driver 8 | #define NULLRDC_CONF_802154_AUTOACK 1 9 | 10 | #define RPL_CONF_DAO_ACK 1 11 | 12 | #endif /* __PROJECT_CONF_H__ */ 13 | -------------------------------------------------------------------------------- /regression-tests/21-large-rpl/code/node/project-conf.h: -------------------------------------------------------------------------------- 1 | #define QUEUEBUF_CONF_STATS 1 2 | #define RESOLV_CONF_SUPPORTS_MDNS 0 3 | #define COOJA_MTARCH_STACKSIZE 4096 4 | 5 | #undef UIP_CONF_MAX_ROUTES 6 | #define UIP_CONF_MAX_ROUTES 3 7 | #undef NBR_TABLE_CONF_MAX_NEIGHBORS 8 | #define NBR_TABLE_CONF_MAX_NEIGHBORS 3 9 | -------------------------------------------------------------------------------- /examples/cc2530dk/border-router/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES+=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | # We need uIPv6, therefore we also need banking 4 | HAVE_BANKING=1 5 | 6 | PROJECT_SOURCEFILES += slip-bridge.c 7 | 8 | CONTIKI_PROJECT = border-router 9 | 10 | all: $(CONTIKI_PROJECT) 11 | 12 | CONTIKI = ../../.. 13 | CONTIKI_WITH_IPV6 = 1 14 | include $(CONTIKI)/Makefile.include 15 | -------------------------------------------------------------------------------- /examples/jn516x/rpl/node/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = node 2 | all: $(CONTIKI_PROJECT) 3 | 4 | TARGET ?= jn516x 5 | 6 | CONTIKI=../../../.. 7 | 8 | CONTIKI_WITH_IPV6 = 1 9 | 10 | MODULES += core/net/mac/tsch 11 | PROJECTDIRS += .. ../tools 12 | PROJECT_SOURCEFILES += rpl-tools.c 13 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 14 | 15 | include $(CONTIKI)/Makefile.include 16 | -------------------------------------------------------------------------------- /platform/avr-ravenusb/rng.h: -------------------------------------------------------------------------------- 1 | #ifndef AVR_RNG_H_ 2 | #define AVR_RNG_H_ 3 | 4 | #include 5 | 6 | //! Returns a byte with eight random bits. 7 | /*! This function is very slow, and should only 8 | ** be used when true random entropy is required. 9 | ** The time it will take to complete is non-deterministic. 10 | */ 11 | extern uint8_t rng_get_uint8(); 12 | 13 | #endif -------------------------------------------------------------------------------- /apps/webbrowser/http-strings: -------------------------------------------------------------------------------- 1 | http_http "http://" 2 | http_https "https://" 3 | http_200 "200 " 4 | http_301 "301 " 5 | http_302 "302 " 6 | http_get "GET " 7 | http_10 "HTTP/1.0" 8 | http_11 "HTTP/1.1" 9 | http_content_type "content-type: " 10 | http_location "location: " 11 | http_host "Host: " 12 | http_crnl "\r\n" 13 | http_html ".html" 14 | http_redirect "Redirect to " 15 | -------------------------------------------------------------------------------- /cpu/mc1322x/doc/buck: -------------------------------------------------------------------------------- 1 | no buck 2 | ------- 3 | vsupply, 4 | 3.6, rftest-rx 46mA 5 | 3.27, rftest-rx 42mA 6 | 3.03, rftest-rx, 39.5mA 7 | 2.56, rftest-rx 35mA 8 | 2.2, rftest-rx 32mA 9 | 10 | buck 11 | ----- 12 | 3.58V, 39mA 13 | 3.3, 37mA 14 | vsupply 3.03, rftest, 35.3mA 15 | 2.47, 32.9mA 16 | 2.2V, 31.2mA 17 | 18 | might have a hard time starting up everything in the <2.7V range 19 | -------------------------------------------------------------------------------- /platform/srf06-cc26xx/launchpad/cc1350/Makefile.cc1350: -------------------------------------------------------------------------------- 1 | ### Will allow the inclusion of the correct CPU makefile 2 | CPU_FAMILY = cc13xx 3 | 4 | ### Add to the source dirs 5 | CONTIKI_TARGET_DIRS += launchpad/cc1350 6 | 7 | BOARD_SOURCEFILES += rf-switch.c tx-power-driver.c 8 | 9 | ### Include the common launchpad makefile 10 | include $(PLATFORM_ROOT_DIR)/launchpad/Makefile.launchpad 11 | -------------------------------------------------------------------------------- /platform/z1/README.z1sp: -------------------------------------------------------------------------------- 1 | Using the Z1 starter platform (Z1SP) 2 | ============================================ 3 | 4 | To enable the Z1SP components, you should include in your application Makefile 5 | the ZOLERTIA_Z1SP flag set to 1, see "examples/z1/Makefile". 6 | 7 | For Z1SP specific information please go to: 8 | 9 | http://zolertia.sourceforge.net/wiki/index.php/Mainpage:z1sp 10 | -------------------------------------------------------------------------------- /regression-tests/scan_build/Makefile: -------------------------------------------------------------------------------- 1 | EXAMPLESDIR=../../examples 2 | TOOLSDIR=../../tools 3 | 4 | EXAMPLES = \ 5 | hello-world/minimal-net \ 6 | hello-world/native \ 7 | eeprom-test/native \ 8 | example-shell/native \ 9 | tcp-socket/minimal-net \ 10 | telnet-server/minimal-net \ 11 | webserver/minimal-net \ 12 | wget/minimal-net \ 13 | 14 | TOOLS= 15 | 16 | include ../Makefile.compile-test 17 | -------------------------------------------------------------------------------- /tools/cooja/config/scripts/log_all.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Example Contiki test script (JavaScript). 3 | * A Contiki test script acts on mote output, such as via printf()'s. 4 | * The script may operate on the following variables: 5 | * Mote mote, int id, String msg 6 | */ 7 | 8 | TIMEOUT(60000); 9 | 10 | while (true) { 11 | log.log(time + ":" + id + ":" + msg + "\n"); 12 | YIELD(); 13 | } 14 | -------------------------------------------------------------------------------- /cpu/mc1322x/tools/test-grid/erase-all.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | use strict; 3 | 4 | my $terms = shift; 5 | 6 | if (! $terms) { 7 | print "Usage: num-devices\n"; 8 | die; 9 | } 10 | 11 | for (my $t=0; $t<$terms; $t++) { 12 | my $dev_num = 2 * $t + 1; 13 | my $ftdi_num = $terms - $t - 1; 14 | my $cmd = "bbmc -l redbee-econotag -i $ftdi_num erase &"; 15 | print "$cmd\n"; 16 | system($cmd); 17 | } 18 | -------------------------------------------------------------------------------- /cpu/mc1322x/tools/test-grid/reset-all.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | use strict; 3 | 4 | my $terms = shift; 5 | 6 | if (! $terms) { 7 | print "Usage: num-devices\n"; 8 | die; 9 | } 10 | 11 | for (my $t=0; $t<$terms; $t++) { 12 | my $dev_num = 2 * $t + 1; 13 | my $ftdi_num = $terms - $t - 1; 14 | my $cmd = "bbmc -l redbee-econotag -i $ftdi_num reset &"; 15 | print "$cmd\n"; 16 | system($cmd); 17 | } 18 | -------------------------------------------------------------------------------- /examples/jn516x/README.md: -------------------------------------------------------------------------------- 1 | Examples for the JN516x platform. 2 | * dr1175: simple Contiki application for the DR1175 evaluation board. Prints out sensor values periodically. 3 | * rime: simple Rime example. Works with ContikiMAC (default) or NullRDC 4 | * RPL: RPL examples, including border router, simple node, and coap resources. More information under rpl/README.md 5 | * tsch: Examples of applications using TSCH -------------------------------------------------------------------------------- /platform/srf06-cc26xx/sensortag/cc1350/Makefile.cc1350: -------------------------------------------------------------------------------- 1 | ### Add to the source list 2 | BOARD_SOURCEFILES += leds-arch.c 3 | 4 | ### Will allow the inclusion of the correct CPU makefile 5 | CPU_FAMILY = cc13xx 6 | 7 | ### Add to the source dirs 8 | CONTIKI_TARGET_DIRS += sensortag/cc1350 9 | 10 | ### Include the common sensortag makefile 11 | include $(PLATFORM_ROOT_DIR)/sensortag/Makefile.sensortag 12 | -------------------------------------------------------------------------------- /platform/srf06-cc26xx/sensortag/cc2650/Makefile.cc2650: -------------------------------------------------------------------------------- 1 | ### Add to the source list 2 | BOARD_SOURCEFILES += leds-arch.c 3 | 4 | ### Will allow the inclusion of the correct CPU makefile 5 | CPU_FAMILY = cc26xx 6 | 7 | ### Add to the source dirs 8 | CONTIKI_TARGET_DIRS += sensortag/cc2650 9 | 10 | ### Include the common sensortag makefile 11 | include $(PLATFORM_ROOT_DIR)/sensortag/Makefile.sensortag 12 | -------------------------------------------------------------------------------- /tools/blaster/Makefile: -------------------------------------------------------------------------------- 1 | CC = gcc 2 | CFLAGS = -Wall -g 3 | HEADERS = 4 | 5 | all: blaster 6 | 7 | depend: 8 | sudo apt-get install libconfig8-dev uuid-dev libqrencode-dev 9 | 10 | %.o: %.c $(HEADERS) 11 | $(CC) -c $(CFLAGS) -o $@ $< 12 | 13 | blaster: blaster.o 14 | $(CC) $(CFLAGS) -o $@ $^ -lconfig -luuid -lqrencode 15 | 16 | clean: 17 | rm *.o blaster 18 | 19 | .PHONY: all depend clean 20 | -------------------------------------------------------------------------------- /tools/cooja/config/scripts/helloworld.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Example Contiki test script (JavaScript). 3 | * A Contiki test script acts on mote output, such as via printf()'s. 4 | * The script may operate on the following variables: 5 | * Mote mote, int id, String msg 6 | */ 7 | 8 | TIMEOUT(2000, log.log("last message: " + msg + "\n")); 9 | 10 | WAIT_UNTIL(msg.equals('Hello, world')); 11 | log.testOK(); 12 | -------------------------------------------------------------------------------- /examples/jn516x/rpl/border-router/README.md: -------------------------------------------------------------------------------- 1 | A RPL border router. 2 | To indicate the hardware target for the border router, add one of the following 3 | options in the command line: 4 | If rpl-border-router runs on dongle: 5 | JN516x_WITH_DONGLE=1 6 | If rpl-border-router runs on DR1174: 7 | JN516x_WITH_DR1174=1 8 | If building for a new platform, first execute : make clean 9 | 10 | See ../README.md for more. -------------------------------------------------------------------------------- /examples/jn516x/tsch/README.md: -------------------------------------------------------------------------------- 1 | Examples for tsch on jn516x 2 | 3 | simple-sensor-network: This example shows a simple sensor network consisting of node(s),an rpl-border-router and a host connected to 4 | the IPv6 network. 5 | tx-power-verfication: Example on TX power control and RSSI reading on JN516x. Resource available on coap client. 6 | uart1-test-node: Example on exposing uart1 of JN516x node to a coap client 7 | 8 | -------------------------------------------------------------------------------- /platform/cc2530dk/segment.rules: -------------------------------------------------------------------------------- 1 | # segment.rules - platform 2 | 3 | # segment.rules file for platform code 4 | # Please see cpu/cc2430/segment.rules for more info on code segments 5 | # and for rules of thumb on what to do and what not to do 6 | 7 | # Keep main() in HOME 8 | HOME contiki-main.c 9 | 10 | # Files with ISRs must be in HOME 11 | HOME button-sensor.c 12 | 13 | # segment.rules - platform - end 14 | -------------------------------------------------------------------------------- /tools/cooja/config/cooja.html: -------------------------------------------------------------------------------- 1 | 2 | The COOJA Simulator (applet) 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tools/cooja/java/org/contikios/cooja/util/ScnObservable.java: -------------------------------------------------------------------------------- 1 | package org.contikios.cooja.util; 2 | 3 | import java.util.Observable; 4 | 5 | public class ScnObservable extends Observable { 6 | public void setChangedAndNotify() { 7 | setChanged(); 8 | notifyObservers(); 9 | } 10 | 11 | public void setChangedAndNotify(Object obj) { 12 | setChanged(); 13 | notifyObservers(obj); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/openocd/arm7_wig.cfg: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Change the default telnet port... 4 | telnet_port 4444 5 | # GDB connects here 6 | gdb_port 3333 7 | # GDB can also flash my flash! 8 | gdb_memory_map enable 9 | gdb_flash_program enable 10 | 11 | # Wiggler interface 12 | interface parport 13 | parport_port 0 14 | parport_cable wiggler 15 | jtag_speed 0 16 | set CPUTAPID 0x3f0f0f0f 17 | source [find target/sam7s.cfg] 18 | 19 | -------------------------------------------------------------------------------- /examples/mbxxx/webserver-ajax/README.md: -------------------------------------------------------------------------------- 1 | webserver ajax 2 | ============== 3 | 4 | Compile with WITH_RIME 1 for neighbor discovery and with ENERGEST_CONF_ON 5 | for energy estimation. 6 | 7 | Estimated consumption with batteries (2.4 V): 8 | Curr Power 9 | ENERGEST_TYPE_CPU: 7.5 mA 18 mW 10 | ENERGEST_TYPE_LPM: 3 mA 7.2 mW 11 | ENERGEST_TYPE_TRANSMIT: 21 mA 50.4 mW 12 | ENERGEST_TYPE_LISTEN: 19 mA 45.6 mW 13 | -------------------------------------------------------------------------------- /examples/ravenusbstick/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ${MAKE} TARGET=avr-ravenusb NOAVRSIZE=1 -f Makefile.ravenusbstick ravenusbstick.elf 3 | avr-objcopy -O ihex -R .signature -R .fuse -R .eeprom ravenusbstick.elf ravenusbstick.hex 4 | avr-size -C --mcu=at90usb1287 ravenusbstick.elf 5 | 6 | clean: 7 | ${MAKE} -f Makefile.ravenusbstick clean 8 | rm -rf obj_avr-ravenusb 9 | rm -rf symbols.c symbols.h ravenusbstick.elf ravenusbstick.hex 10 | -------------------------------------------------------------------------------- /cpu/arm/common/dbg-io/dbg-putchar.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | #undef putchar 6 | #undef putc 7 | 8 | int 9 | putchar(int c) 10 | { 11 | dbg_putchar(c); 12 | return c; 13 | } 14 | 15 | int 16 | putc(int c, FILE *f) 17 | { 18 | dbg_putchar(c); 19 | return c; 20 | } 21 | 22 | int 23 | __sp(struct _reent *_ptr, int c, FILE *_p) { 24 | dbg_putchar(c); 25 | return c; 26 | } 27 | -------------------------------------------------------------------------------- /apps/collect-view/collect-view-sky.h: -------------------------------------------------------------------------------- 1 | #ifndef COLLECT_VIEW_SKY_H 2 | #define COLLECT_VIEW_SKY_H 3 | 4 | #include "collect-view.h" 5 | 6 | enum { 7 | BATTERY_VOLTAGE_SENSOR, 8 | BATTERY_INDICATOR, 9 | LIGHT1_SENSOR, 10 | LIGHT2_SENSOR, 11 | TEMP_SENSOR, 12 | HUMIDITY_SENSOR, 13 | RSSI_SENSOR, 14 | ETX1_SENSOR, 15 | ETX2_SENSOR, 16 | ETX3_SENSOR, 17 | ETX4_SENSOR, 18 | }; 19 | 20 | 21 | #endif /* COLLECT_VIEW_SKY_H */ 22 | -------------------------------------------------------------------------------- /apps/collect-view/collect-view-z1.h: -------------------------------------------------------------------------------- 1 | #ifndef COLLECT_VIEW_Z1_H 2 | #define COLLECT_VIEW_Z1_H 3 | 4 | #include "collect-view.h" 5 | 6 | enum { 7 | BATTERY_VOLTAGE_SENSOR, 8 | BATTERY_INDICATOR, 9 | LIGHT1_SENSOR, 10 | LIGHT2_SENSOR, 11 | TEMP_SENSOR, 12 | HUMIDITY_SENSOR, 13 | RSSI_SENSOR, 14 | ETX1_SENSOR, 15 | ETX2_SENSOR, 16 | ETX3_SENSOR, 17 | ETX4_SENSOR, 18 | }; 19 | 20 | 21 | #endif /* COLLECT_VIEW_Z1_H */ 22 | -------------------------------------------------------------------------------- /examples/sky/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI = ../.. 2 | ifndef TARGET 3 | TARGET=sky 4 | endif 5 | 6 | all: blink sky-collect #rt-leds test-button tcprudolph0 7 | 8 | %.tgz: %.ihex 9 | mkdir $(basename $<) ; \ 10 | mv $< $(basename $<) ; \ 11 | echo $(basename $<)/$(basename $<).ihex 600 > $(basename $<)/runfile ; \ 12 | tar czf $@ $(basename $<) 13 | 14 | CONTIKI_WITH_IPV4 = 1 15 | CONTIKI_WITH_RIME = 1 16 | include $(CONTIKI)/Makefile.include 17 | -------------------------------------------------------------------------------- /examples/sky-shell-webserver/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = sky-shell-webserver 2 | all: $(CONTIKI_PROJECT) 3 | PROJECT_SOURCEFILES = webserver-nogui.c 4 | HTTPD_CFS=1 5 | CFLAGS = -DRESOLV_CONF_SUPPORTS_MDNS=0 6 | DEFINES=NETSTACK_MAC=nullmac_driver,NETSTACK_RDC=nullrdc_driver 7 | SMALL=1 8 | 9 | CONTIKI = ../.. 10 | APPS = webserver serial-shell 11 | CONTIKI_WITH_IPV4 = 1 12 | CONTIKI_WITH_RIME = 1 13 | include $(CONTIKI)/Makefile.include 14 | 15 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text=auto whitespace=trailing-space 3 | 4 | # Explicitly declare text files you want to always be normalized and converted 5 | # to native line endings on checkout. 6 | *.c text 7 | *.h text 8 | *.java text 9 | 10 | # Denote all files that are truly binary and should not be modified. 11 | *.png binary 12 | *.jpg binary 13 | *.ihex binary 14 | *.s37 binary 15 | -------------------------------------------------------------------------------- /core/net/llsec/README.md: -------------------------------------------------------------------------------- 1 | Link layer security is implemented as a new netstack layer, which is located in between the MAC and the NETWORK layer. The interface of LLSEC drivers is defined in [llsec.h](llsec.h). Additionally, LLSEC drivers may define a special [FRAMER](../mac/framer.h), which calls the actual FRAMER underneath. By default, the LLSEC driver `nullsec` is used, which does nothing. 2 | 3 | # TODO 4 | 5 | * Most main files do not call LLSEC.init, yet -------------------------------------------------------------------------------- /examples/mbxxx/webserver-ajax/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI_PROJECT = mbxxx-webserver 2 | all: $(CONTIKI_PROJECT) 3 | 4 | DEFINES=PROJECT_CONF_H=\"webserver-ajax-conf.h\" 5 | 6 | #APPS = webserver 7 | 8 | PROJECTDIRS = . $(CONTIKI)/apps/webserver 9 | PROJECT_SOURCEFILES = ajax-cgi.c httpd-fs.c http-strings.c \ 10 | httpd.c webserver-dsc.c webserver-nogui.c 11 | 12 | CONTIKI = ../../.. 13 | CONTIKI_WITH_IPV6 = 1 14 | include $(CONTIKI)/Makefile.include 15 | -------------------------------------------------------------------------------- /tools/stm32w/uip6_bridge/Makefile: -------------------------------------------------------------------------------- 1 | ifdef CONTIKI_HOME 2 | CONTIKI = $(CONTIKI_HOME) 3 | else 4 | ifndef CONTIKI 5 | CONTIKI=../../.. 6 | endif 7 | endif 8 | 9 | DEFINES=PROJECT_CONF_H=\"bridge-conf.h\" 10 | 11 | ifndef TARGET 12 | TARGET=mbxxx 13 | endif 14 | 15 | PROJECTDIRS = dev 16 | PROJECT_SOURCEFILES = fakeuip.c sicslow_ethernet.c slip.c 17 | 18 | all: uip6-bridge-tap 19 | 20 | CONTIKI_WITH_IPV6 = 1 21 | include $(CONTIKI)/Makefile.include 22 | -------------------------------------------------------------------------------- /apps/collect-view/collect-view-template.c: -------------------------------------------------------------------------------- 1 | #include "collect-view.h" 2 | 3 | enum { 4 | SENSOR1, 5 | SENSOR2, 6 | }; 7 | 8 | /*---------------------------------------------------------------------------*/ 9 | void 10 | collect_view_arch_read_sensors(struct collect_view_data_msg *msg) 11 | { 12 | msg->sensors[SENSOR1] = 0; 13 | msg->sensors[SENSOR2] = 0; 14 | } 15 | /*---------------------------------------------------------------------------*/ 16 | -------------------------------------------------------------------------------- /cpu/arm/at91sam7s/usb-interrupt.h: -------------------------------------------------------------------------------- 1 | #ifndef USB_INTERRUPT_H_0HRIPZ5SIA__ 2 | #define USB_INTERRUPT_H_0HRIPZ5SIA__ 3 | 4 | void 5 | usb_int (void); 6 | 7 | void 8 | usb_arch_transfer_complete(unsigned int hw_ep); 9 | 10 | void 11 | usb_arch_transfer_complete(unsigned int hw_ep); 12 | void 13 | usb_arch_reset_int(); 14 | 15 | void 16 | usb_arch_suspend_int(); 17 | 18 | void 19 | usb_arch_resume_int(); 20 | 21 | #endif /* USB_INTERRUPT_H_0HRIPZ5SIA__ */ 22 | -------------------------------------------------------------------------------- /regression-tests/15-compile-arm-apcs-ports/Makefile: -------------------------------------------------------------------------------- 1 | EXAMPLESDIR=../../examples 2 | TOOLSDIR=../../tools 3 | 4 | EXAMPLES = \ 5 | hello-world/econotag \ 6 | hello-world/mbxxx:STM32W_CPUREV=CC \ 7 | ipv6/rpl-border-router/econotag \ 8 | er-rest-example/econotag \ 9 | webserver-ipv6/econotag \ 10 | ipv6/multicast/econotag \ 11 | econotag-flash-test/econotag \ 12 | econotag-ecc-test/econotag \ 13 | 14 | TOOLS= 15 | 16 | include ../Makefile.compile-test 17 | -------------------------------------------------------------------------------- /apps/webserver-nano/httpd-fs/makefsdata.ignore/README.makefsdata.md: -------------------------------------------------------------------------------- 1 | Move the desired pages into httpd-fs and regenerate httpd-fsdata.c using the 2 | PERL script makefsdata. Stage unused pages in this directory; anything here 3 | will be ignored by makefsdata. When using non-ram storage it must be invoked 4 | with the HTTPD_STRING_ATTR! 5 | 6 | cd ~/contiki/apps/webserver (or webserver-nano, -micro, -mini, ...) 7 | ../../tools/makefsdata -A HTTPD_STRING_ATTR 8 | -------------------------------------------------------------------------------- /regression-tests/23-compile-avr/Makefile: -------------------------------------------------------------------------------- 1 | EXAMPLESDIR=../.. 2 | TOOLSDIR=../../tools 3 | 4 | # build avr-rss2 examples, covering IPv6, RPL, Rime, Nullrdc, Contikimac 5 | 6 | EXAMPLES = \ 7 | examples/avr-rss2/hello-sensors/avr-rss2 \ 8 | examples/avr-rss2/ipv6/rpl-udp-report/avr-rss2 \ 9 | examples/avr-rss2/ipv6/rpl-border-router/avr-rss2 \ 10 | examples/powertrace/avr-rss2 \ 11 | examples/rime/avr-rss2 12 | TOOLS= 13 | 14 | include ../Makefile.compile-test 15 | -------------------------------------------------------------------------------- /tools/release-tools/Makefile.sky: -------------------------------------------------------------------------------- 1 | contiki-collect-sky: 2 | (cd contiki-2.x/tools/collect-view/; ant dist && chmod 755 dist/tools/*-linux) 3 | cp -r contiki-2.x/tools/collect-view/dist contiki-collect-sky-$(RELEASE) 4 | 5 | contiki-collect-sky-$(RELEASE).zip: contiki-collect-sky 6 | zip -r contiki-collect-sky-$(RELEASE).zip contiki-collect-sky-$(RELEASE) 7 | chmod 644 contiki-collect-sky-$(RELEASE).zip 8 | 9 | BINARIES += contiki-collect-sky-$(RELEASE).zip 10 | -------------------------------------------------------------------------------- /platform/avr-rss2/dev/adc.h: -------------------------------------------------------------------------------- 1 | /* Copyright Robert Olsson */ 2 | 3 | #define V_IN_FACTOR 0.006256 /* 6.4/1023 */ 4 | #define V_IN_FACTOR_NONE 0.001564 /* 1.6/1023 */ 5 | #define SCHOTTKY_DROP 0.29 6 | #define V_IN_FACTOR_SCHOTTKY 0.0292 /* 30.19-SCHOTTKY_DROP/1023 schottky corr */ 7 | 8 | uint16_t 9 | adc_read(uint8_t pin); 10 | double 11 | adc_read_v_in(void); 12 | double 13 | adc_read_a1(void); 14 | double 15 | adc_read_a2(void); 16 | 17 | -------------------------------------------------------------------------------- /platform/exp5438/port-mapping.txt: -------------------------------------------------------------------------------- 1 | LED red P1.0 2 | LED yellow P1.1 3 | 4 | 5 | Serial port UCA1 6 | 7 | 8 | CC2420 SPI UCB0 9 | 10 | CC2420 CSN P3.0 (UBE0STE) 11 | CC2420 MOSI P3.1 (UCB0SIMO/SDA) 12 | CC2420 MISO P3.2 (UCB0SOMI/SCL) 13 | CC2420 SCK P3.3 (UCB0CLK/STE) 14 | 15 | CC2420 FIFOP P1.6 16 | CC2420 FIFO P1.5 17 | CC2420 CCA P1.7 18 | CC2420 SFD P1.3 19 | CC2420 VREN P1.4 20 | CC2420 RESET P1.2 21 | 22 | 23 | Button 1 P2.6 24 | -------------------------------------------------------------------------------- /platform/z1/Makefile.z1: -------------------------------------------------------------------------------- 1 | # Common Makefile between Z1 and Z1SP 2 | 3 | CONTIKI_TARGET_SOURCEFILES += contiki-z1-platform.c 4 | CLEAN += *.z1 5 | 6 | include $(CONTIKI)/platform/z1/Makefile.common 7 | 8 | ifeq ($(ZOLERTIA_Z1SP),1) 9 | include $(CONTIKI)/platform/z1/Makefile.z1sp 10 | endif 11 | 12 | MODULES += core/net \ 13 | core/net/mac core/net/mac/contikimac \ 14 | core/net/llsec core/net/llsec/noncoresec \ 15 | dev/cc2420 16 | -------------------------------------------------------------------------------- /cpu/arm/openocd/arm7_wig.cfg: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Change the default telnet port... 4 | telnet_port 4444 5 | # GDB connects here 6 | gdb_port 3333 7 | # GDB can also flash my flash! 8 | gdb_memory_map enable 9 | gdb_flash_program enable 10 | 11 | # Wiggler interface 12 | interface parport 13 | parport_port 0 14 | parport_cable wiggler_ntrst_inverted 15 | jtag_speed 0 16 | set CPUTAPID 0x3BA00477 17 | set BSTAPID 0x16410041 18 | source [find target/stm32F10xxx.cfg] 19 | 20 | -------------------------------------------------------------------------------- /cpu/arm/stm32f103/rtimer-arch.h: -------------------------------------------------------------------------------- 1 | /** 2 | * \file 3 | * Header file for the STM32F103-specific rtimer code 4 | * \author 5 | * Simon Berg 6 | */ 7 | 8 | #ifndef RTIMER_ARCH_H_ 9 | #define RTIMER_ARCH_H_ 10 | 11 | #include "sys/rtimer.h" 12 | 13 | #define RTIMER_ARCH_SECOND (MCK/1024) 14 | 15 | void rtimer_arch_set(rtimer_clock_t t); 16 | 17 | rtimer_clock_t rtimer_arch_now(void); 18 | 19 | #endif /* RTIMER_ARCH_H_ */ 20 | -------------------------------------------------------------------------------- /tools/cooja/examples/jni_test/mac_users/nmandsize: -------------------------------------------------------------------------------- 1 | nm -a -m $1 2 | 3 | S="$(size -x -m -l $1)" 4 | 5 | parse() ( 6 | echo "$S" | 7 | awk '/^Segment/ {s=$2} s=="__DATA:" && $2=="'$1'" \ 8 | {printf "%s %s 0x%x\n",$5,$3,$3+$5}' | 9 | (read start size end; 10 | echo "$2 START: $start"; 11 | echo "$2 SIZE: $size"; 12 | echo "$2 END: $end") 13 | ) 14 | 15 | parse __data: "DATA SECTION" 16 | parse __bss: "BSS SECTION" 17 | parse __common: "COMMON SECTION" 18 | -------------------------------------------------------------------------------- /tools/blaster/README: -------------------------------------------------------------------------------- 1 | Blaster extends the compiled firmware with additional data for 2 | storing into flash memory. See examples/econotag-flash-test for 3 | usage. Its written for Econotag / MC1322X 4 | 5 | ./blaster [ ...] 6 | To Generate a default configuration file, use blaster without parameter. 7 | 8 | Its important to use -l as a flash parameter. 9 | 10 | mc1322x-load -f flasher_econotag.bin -s firmware.bin -t /dev/ttyUSB1 -l 11 | -------------------------------------------------------------------------------- /tools/z80/java/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.markn.contiki.z80 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /cpu/arm/common/SD-card/Makefile.sdcard: -------------------------------------------------------------------------------- 1 | 2 | ifdef SDCARD 3 | EFSL_DIR=/home/ksb/packages/efsl/efsl-0.2.8 4 | EFSL_SRC= efs.c fat.c sd.c fat.c partition.c ioman.c disc.c fs.c file.c plibc.c extract.c dir.c time.c ls.c ui.c 5 | CONTIKI_CPU_DIRS += ../common/SD-card 6 | CONTIKIDIRS += $(EFSL_DIR)/src $(EFSL_DIR)/src/interfaces 7 | CONTIKI_TARGET_SOURCEFILES += $(EFSL_SRC) cfs-sdcard.c efs-sdcard-arch.c 8 | CFLAGS+= -I $(EFSL_DIR)/inc -I $(CONTIKI_CPU_ARM_COMMON)/SD-card 9 | 10 | endif -------------------------------------------------------------------------------- /regression-tests/25-ieee802154/js/01-panid-handling.js: -------------------------------------------------------------------------------- 1 | TIMEOUT(10000, log.testFailed()); 2 | 3 | while(true) { 4 | YIELD(); 5 | 6 | log.log(time + " " + id + " "+ msg + "\n"); 7 | 8 | if(msg.contains("=check-me=") == false) { 9 | continue; 10 | } 11 | 12 | if(msg.contains("FAILED")) { 13 | log.testFailed(); 14 | } 15 | 16 | if(msg.contains("DONE")) { 17 | log.testOK(); 18 | break; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /examples/rssi-scanner/Makefile: -------------------------------------------------------------------------------- 1 | DEFINES=PROJECT_CONF_H=\"project-conf.h\" 2 | 3 | ifndef TARGET 4 | TARGET = z1 5 | endif 6 | 7 | CONTIKI = ../.. 8 | 9 | CONTIKI_PROJECT = rssi-scanner-cc2420 10 | 11 | all: $(CONTIKI_PROJECT) 12 | 13 | %.class: %.java 14 | javac $(basename $<).java 15 | 16 | viewrssi3d: ViewRSSI3D.class 17 | make login | java ViewRSSI3D 18 | 19 | viewrssi: ViewRSSI.class 20 | make login | java ViewRSSI 21 | 22 | include $(CONTIKI)/Makefile.include 23 | 24 | -------------------------------------------------------------------------------- /platform/avr-ravenlcd/doc/Makefile: -------------------------------------------------------------------------------- 1 | # This target requires and graphviz and doxygen 2 | dox: 3 | doxygen Doxyfile 4 | 5 | 6 | pdf: 7 | $(MAKE) -C latex refman.pdf 8 | 9 | upload: dox #pdf 10 | # scp -C latex/refman.pdf adamdunkels@shell.sourceforge.net:/home/groups/c/co/contiki/htdocs/ 11 | # tar czfv - html | ssh adamdunkels@shell.sourceforge.net "cd /home/groups/c/co/contiki/htdocs/; tar xfz -" 12 | (cd html; rsync -rv . kloster.sics.se:/home/adam/public_html/contiki/docs) 13 | -------------------------------------------------------------------------------- /platform/galileo/bsp/libc/patches/newlib_add_i586_elf.patch: -------------------------------------------------------------------------------- 1 | --- newlib/configure.host 2015-03-12 17:59:39.380318464 -0300 2 | +++ newlib/configure.host 2015-03-12 17:55:05.933645678 -0300 3 | @@ -810,6 +810,10 @@ 4 | z8k-*-*) 5 | syscall_dir=syscalls 6 | ;; 7 | + i586-*-elf) 8 | + newlib_cflags="${newlib_cflags} -DREENTRANT_SYSCALLS_PROVIDED" 9 | + syscall_dir=syscalls 10 | + ;; 11 | *) 12 | newlib_cflags="${newlib_cflags} -DMISSING_SYSCALL_NAMES" 13 | syscall_dir= 14 | -------------------------------------------------------------------------------- /tools/sky/uip6-bridge/radvd.conf: -------------------------------------------------------------------------------- 1 | interface tap0 { 2 | AdvSendAdvert on; 3 | AdvLinkMTU 1280; 4 | AdvCurHopLimit 128; 5 | AdvReachableTime 360000; 6 | MinRtrAdvInterval 100; 7 | MaxRtrAdvInterval 150; 8 | AdvDefaultLifetime 200; 9 | prefix AAAA::/64 10 | { 11 | AdvOnLink on; 12 | AdvAutonomous on; 13 | AdvPreferredLifetime 4294967295; 14 | AdvValidLifetime 4294967295; 15 | }; 16 | }; 17 | -------------------------------------------------------------------------------- /cpu/mc1322x/doc/lqi-pdr/1000pkt-64len.csv: -------------------------------------------------------------------------------- 1 | 1,6 2 | 5,4 3 | 5,6 4 | 5,6 5 | 6,3 6 | 30,5 7 | 45,3 8 | 51,9 9 | 162,6 10 | 170,7 11 | 308,6 12 | 317,6 13 | 506,8 14 | 511,7 15 | 596,7 16 | 602,7 17 | 674,9 18 | 743,8 19 | 788,8 20 | 842,9 21 | 859,9 22 | 951,9 23 | 898,10 24 | 976,12 25 | 978,19 26 | 981,13 27 | 988,30 28 | 991,17 29 | 992,12 30 | 993,16 31 | 993,19 32 | 994,15 33 | 995,19 34 | 995,19 35 | 998,30 36 | 999,38 37 | 1000,34 38 | 1000,40 39 | 1000,46 40 | 1000,47 41 | 1000,54 42 | -------------------------------------------------------------------------------- /cpu/mc1322x/tools/test-grid/load-all.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | use strict; 3 | 4 | my $bin = shift; 5 | my $terms = shift; 6 | 7 | if (! $terms) { 8 | print "Usage: $0 file.bin num-devices\n"; 9 | die; 10 | } 11 | 12 | for (my $t=0; $t<$terms; $t++) { 13 | my $dev_num = 2 * $t + 1; 14 | my $ftdi_num = $terms - $t - 1; 15 | my $cmd = "mc1322x-load.pl -e -f $bin -t /dev/ttyUSB$dev_num -c 'bbmc -l redbee-econotag -i $ftdi_num reset' &"; 16 | print "$cmd\n"; 17 | system($cmd); 18 | } 19 | -------------------------------------------------------------------------------- /examples/ipv6/rpl-collect/Makefile: -------------------------------------------------------------------------------- 1 | CONTIKI = ../../.. 2 | APPS = powertrace collect-view 3 | CONTIKI_PROJECT = udp-sender udp-sink 4 | PROJECT_SOURCEFILES += collect-common.c 5 | 6 | CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" 7 | 8 | ifeq ($(MAKE_WITH_NON_STORING),1) 9 | CFLAGS += -DWITH_NON_STORING=1 10 | endif 11 | 12 | ifdef PERIOD 13 | CFLAGS=-DPERIOD=$(PERIOD) 14 | endif 15 | 16 | all: $(CONTIKI_PROJECT) 17 | 18 | CONTIKI_WITH_IPV6 = 1 19 | include $(CONTIKI)/Makefile.include 20 | -------------------------------------------------------------------------------- /platform/galileo/bsp/libc/patches/large64_files.patch: -------------------------------------------------------------------------------- 1 | --- newlib/libc/include/sys/config.h 2015-01-14 07:25:15.000000000 -0200 2 | +++ newlib/libc/include/sys/config.h 2015-03-13 14:21:33.247980336 -0300 3 | @@ -94,9 +94,6 @@ 4 | #define HAVE_GETDATE 5 | #define _HAVE_SYSTYPES 6 | #define _READ_WRITE_RETURN_TYPE _ssize_t 7 | -#define __LARGE64_FILES 1 8 | -/* we use some glibc header files so turn on glibc large file feature */ 9 | -#define _LARGEFILE64_SOURCE 1 10 | #endif 11 | #endif 12 | --------------------------------------------------------------------------------