I want to use cc2541 to first receive ibeacon packages, and then transmit it to other Central device. But how can cc2541 be the role of observer(or central) and peripheral at the same time? Can anyone offer me a piratical solution? Thank you very much!
Can cc2541 be the role of observer and peripheral at the same time?
1.3k Views Asked by 蔡小亮 At
1
There are 1 best solutions below
Related Questions in HARDWARE
- Is cartopy projections are computaionally heavy?
- Memory location changing from 0 to 1 consistently on Mac
- How to adjust differences of hardwares while executing code
- Read/write data to DS1642
- How can I get current cpufreq in kernel code?
- Is it possible to fetch iPhone device model number (MT552GR/A) programatically?
- The problem with running the Simulink model on arduino uno
- In VSC and other apps, when i scroll the text becomes black and turns normal after a very short delay 100ms. It is really annoying
- ERROR in rc_mpu_calibrate_accel_routine, center of fitted ellipsoids(in beagle bone blue)
- Will the 16n prefetch in DDR5 affect the bandwidth of small-granularity memory accesses?
- suppose a program is running on 5 threads.If an extra thread is added,what factors should be considered?
- Signed Driver rejected by Windows 10
- How to randomly simulate keypresses for special keys
- How does a TLB manage memory translation for addresses that cross page boundaries?
- Get number of RAM channels as a property of the system
Related Questions in BLUETOOTH-LOWENERGY
- How to receive Bluetooth value in Android app
- provision failed and giving null pointer exception in android using ESP provisioning Library
- Need the decoded data while from server esp32 send and Receiving in react native cli
- python script using bluetooth running on windows 11 vs raspberry pi4
- How to make sure only one client connect to the BLE server on ESP32?
- Samsung SM-A546E Bluetooth in background odd behaviour
- Android OnCharacteristicChanged - Continuous stream of bytes from Bluetooth Stethoscope
- ESP32 BLE Arduino And getting a compile error of 'ringbuf_type_t' has not been declared
- (corebluetooth didUpdateValueFor) data is not being sent properly between my peripheral arduino 33 nano and iOS app
- Constructing a script using a 3rd party library
- BLE SMP packets sniffing using scapy python
- Error in Bluetooth specification? Heading field of Location and Speed
- How to understand the Sensor Setting Property ID in the SIG Mesh model
- Problem with mapping of BLE 5.1 ATT protocol stack with winsock & winsock2 arcitechture
- Plot ecg graph in flutter
Related Questions in SYSTEM-ON-CHIP
- Do all Bluetooth LE devices implement the HCI interface?
- Compilers for mpSoC
- Can we add a new arbiter in Gem5 simulator (Garnet 2.0)
- GadgetFS on Allwinner H3 based linux board
- network-on-chip verilog code
- Can I use LDREX/STREX to implement a spin lock without enabling SCU in a multicore ARM Cortex-A9 SoC?
- Nordic nRF51822 + Nordic IoT SDK
- Basic ARM application in Xilinx Zynq SoC
- Can cc2541 be the role of observer and peripheral at the same time?
- How to retrieve SoC model name of an android device?
- Python script for polling Raspberry Pi internal SoC temperature
- how does an ARM boot from a sd card?
- Accessing Platform Device from Userpace
- Libero soc & ide for windows 7 x32
- Can a 32 bit MCU have data lines more than 32?
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)
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?
Using the Bluegiga BLE113 or BLE121LR modules (which are both powered by the CC2541 chipset internally), it is possible using the Bluegiga BLE stack and SDK to run the module as peripheral and observer. The following BGScript snippet demonstrates how you would make a module be connectable and scanning in observation mode simultaneously:
This is a very basic implementation to demonstrate the concept, and you would need a few other project definition files to go along with it as described in the Bluegiga documentation (e.g.
project.bgproj,gatt.xml,hardware.xml), but this at least demonstrates that it is possible. You would also need to implement additional logic to handle passing that data on to a connected central device, not shown here. More information on these devices and the SDK can be found here:I am not familiar with how you would do this using other stacks such as TI's, but it works out of the box with Bluegiga's latest SDK and their CC2540/CC2541-powered modules.