@ nesC Programming KETI / Ubiquitous Computing Center Jeonghoon Kang
1 SN Overview Sensor Network: Bridge between the internet and the physical world IEEE (TinyOS, IPv6, ZigBee, SP100, etc)
2 Network Embedded System C App.c Main.exe
3 TinyOS / nesC 2-Level Structure Command (Bottom direction) Non-time critical Long running operations Cannot preempt & can be preempted Background computation Events (Top direction) Time critical Small running operations Cannot be preempted Able to interrupt running Tasks
4 Preemption Pre-emption as used with respect to operating systems means the ability of the operating system to preempt or stop a currently scheduled task in favour of a higher priority task. The scheduling may be one of, but not limited to, process or I/O scheduling etc.operating systemsprocess or I/O scheduling Non-preemptability arises, for instance, when handling an interrupt. In this case, scheduling is avoided until the interrupt is handled. Making a scheduler preemptible has the advantage of better system responsiveness and scalability.interrupt scheduler The schedulers used in most modern operating systems, such as various flavours of Unix, can preempt user processes. This is called preemptive multitasking, and is in contrast to cooperative multitasking wherein a process "gives away" its time by utilizing kernel resources or by specifically calling a kernel routine to allow other processes time to run. Some operating systems' schedulers (including Linux as of the 2.6 series) have the ability to preempt a process while it is processing a system call as well (a preemptible kernel).Unixpreemptive multitaskingcooperative multitaskingLinux system call Linux, Unix, *BSD, Mac OS X, and Windows NT are all examples of operating systems that utilize preemptive multitasking; Netware, Windows for Workgroups, and Macintosh System 9 are all examples of cooperative multitasking operating systems.Mac OS XWindows NTNetware Windows for Workgroups From
5 TinyOS Kernel
6 nesC Overview [nes-si:] Network Embedded System C Language Supports TinyOS Make applications for Network Embedded system No dynamic memory allocation Extension of C programming language Efficient code for micro-controllers Able to interact with old C code Many C Programmer C is little helpful for safe code & structuring applications
7 nesC Application Components + Interface *.nc Component: Module Configuration Static No dynamic memory No function pointers Programming ( ATmega128L ) In flash memory(128K, 40K, 60K) In SRAM(4K) In EEPROM(4K)
8 nesC Structure Module oooM.nc Code file Configuration ooo.nc/oooC.nc Wiring of components Define wiring of Modules Interfaces ooo.nc Contains only definition Commands/Events
9 File type Components Configuration Module Interface
10 Configuration (ex. Blink.nc)
11 Basic Concept Component Configuration Module Provides Uses Interface Command Event Task Post Keep in mind (Interface file defines Command / Event) Command is implemented on Providing Component Event is implemented on Using Component
12 Basic Concept: Configuration Syntax File name: Top-level configuration: ooo.nc (in each application) General configuration: oooC.nc Wire only 2 components together at a time Using with ‘ ’ and ‘=’
13 Configuration Ex. Top-level configuration
14 Configuration (ex. Blink.nc)
15 Basic Concept: Module Syntax Name File: oooM.nc Interface.command(or event) Command Implement in all the ‘provides’ interfaces Prefixed with ‘call’ Event Implement in all the ‘uses’ interfaces Prefixed with ‘signal’
16 Module Ex. Module Interface Command Event
17 Module (ex. BlinkM.nc)
18 Module (ex. BlinkM.nc)
19 Module (ex. BlinkM.nc)
20 Basic Concept: Interface File name: ooo.nc Bi-directional Provider & User No actual code or wiring Declare commands and events Provider Module: Implement all commands User Module: call command & Implement all events Parameterized Interfaces Ex.
21 Interface (ex. Timer.nc)
22 Interface (ex. StdControl.nc)
23 Interface Ex.
24 Configuration Ex. General configuration
25 Wiring Syntax Ex. End-point1 End-point2 End-point1 End-point2 End-point1=End-point2
26 Task Ex. Task can be posted in command, event and task task void taskname() {………} Post taskname();
27 Sample nesC Application (Kmote0) 전원 On 부팅 Led On Basic Application Component Main.nc, LedsC.nc Test.nc, TestM.nc Interface StdControl.nc, Leds.nc
28 Top Configuration Main TestM LedsC StdControl Leds Test
29 Configuration (Test.nc)
30 Configuration (Main.nc)
31 Module (MainM.nc)
32 Module (TestM.nc)
33 Module (LedsC.nc)
34 Module (LedsC.nc)
35 Module (LedsC.nc)
36 Module (LedsC.nc)
37 Module (LedsC.nc)
38 Interface (Leds.nc)
39 Interface (Leds.nc)
40 Interface (Leds.nc)
41 Compile Environment cd /opt/tinyos-1.x/apps/Blink make telosb make telosb install(or reinstall) Make telosb reinstall.1 bsl,/dev/ttyUSB0 1 : node ID bsl : fusing method Important Environment Variables (so tough for newbie) nesC make TOSDIR TOSROOT MAKERULES PATH Java CLASSPATH Check env | grep TOS
42 VMPlayer on Windows XP, Vista Easy set-up all the Development Environment for TinyOS-1.x / TinyOS-2.x All set previously on Windows Check for the VM image file : =&sort=brandname
43 References The nesC Language: A Holistic Approach to Networked Embedded Systems nesC 1.1 Language Reference Manual TinyOS Programming Manual 2.x/doc/pdf/tinyos-programming.pdf