У нас вы можете посмотреть бесплатно Adding my own library to Contiki OS или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Details: -The library that i create is: libhello.a -The library just prints the message "Hello everbody, library call" -I included the library to the Contiki example "example-broadcast.c" 1. Create folder example: Copy the example-broadcast.c Copy the Makefile 2. Create the library: Create object file: msp430-gcc -mmcu=msp430f1611 -c hello.c -o hello.o Create library file: msp430-ar -cvq libhello.a hello.o 3. Tell Contiki the path to the library: TARGET_LIBFILES += -L. -lhello 4. Add the library to your .c code: #include "hello.h" Print_Function(); 5. Compile your .c code: make example-broadcast TARGET=sky