I am trying to build a port for Contiki on my lpc1347 board. I have set up the mcu libraries and makefiles, all that is left is to add the radio support. My goal is to use a cc2530 radio that I have, the problem is i do not know much about this. I see that that there is already a port for c2530, but i want to use cc2530 as a radio, so is it necessary to port Contiki in that too? How should i go about adding my lpc1347 board support for cc2530's contiki files?
Related Questions in CONTIKI
- How to run Zephyr Echo Client-Server sample using nrf52840dk & nrf52840dongle?
- Are there any resources or documentation that provide power consumption characteristics of Cooja motes, similar to real hardware
- Renode's terminal and node's window not opening in Contiki-ng
- How to resolve these JAVA_HOME path error in contiki-ng cooja
- Data packet format and routing tables in RPL
- In MQTT PUBLICATION
- How to make motes move in cooja
- How to display information in collect view using exemple/udp-ipv6/udp_client?
- Is is possible to switch between radios in Contiki NG during runtime (change NETSTACK_RADIO struct)?
- When simulating RPL Attack in Cooja, modifications made to core files affect normal motes behavior during experiment?
- Using an Openmote-B ADC
- How to modified sky mote or wake change wake up time periodically in contiki 2.7?
- dht11 sensor timed out with cc2650 launchpad
- How to write a C program which contains swtich case that decides which progam to compile amoung two other c programs
- Why a variable would not be allocated as local in stack
Related Questions in LPC
- C - Call embedded "BIOS" code from User code
- Can’t read data from the accelerometer (ISM330DLC) connected to the microcontroller (LPC824) via SPI
- How can praat get formant data from audio?
- Unable to find root cause why i am unable to program the LPC54606 microcontroller
- Lpc2148 UART0 - code doesnt enter the interrupt handler
- I need help to init and run timer for LPC17XX
- LPC1768 Programming in keil
- LPC1225 UART Tx works, but Rx does not
- Division Using Shift In Assembly Language
- EXC_RETURN does not work in PendSV on ARM Cortex-M3
- Can I use the external nor flash as program memory and data storage at the same time?
- Is there any way to make a Excel file without FAT format (in RL-ARM libraries)?
- Unable to edit configuration files in Marlin
- LPC18S37 pin configuration
- aarch64-linux-gnu/bin/ld: cannot find -lpcap
Related Questions in RADIO-TRANSMISSION
- i connected the ESP8266 MOD to the RF transmitter and sending simple message called "Hello World" but RF receiver not receives WHY? (Lib - radiohead)
- Contiki-ng Periodic radion on off
- nRF24 ManualAcknowledgement.ino example not working
- Arduino Weather Station, Radio signals
- Using nrf24L01 module with raspberry pi pico
- tinyos implementation of routing table for multiple nodes
- ESP32-H2 low-level radio access
- NRF24L01 between Raspberry Pi 3 and Pico
- Arduino Mhz 433 send a long
- Reading Serial Data Using a Raspberry Pi Pico
- Using RF Modules with Raspberry Pi Pico
- How can I use esp-idf-mirf nRF24L01/Si24R1 driver to transmit audio sampled with i2s_read?
- Migration to Raspberry PI 3B+ problem with RF24 library and C code compiling
- How to compare signals from RF 433 with variable codes by Arduino keeloq
- What Received Power Model To Use For Localization
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The CC2530 is a SoC device with a 8051 MCU. You'll have to program this 8051 processor in order to use the radio. If Contiki is already running on your lpc1347 it is not necessary to port it on the cc2530 too, but you'll have to communicate with this latter in someway (uart, spi, ...) in order to send/receive radio packet and turn on/off the radio.
I suggest you to write a file i.e
cpu/lpc1347/dev/cc2530-rf.cand implement a new radio driver using one of the communication interface. Implement each functions require by the structurestruct radio_driverwhich is found incore/dev/radio.hand set theNETSTACK_CONF_RADIOvariable to this new radio driver.