Ti Cc2540 Usb Driver Download


NOTICE: The Processors Wiki will End-of-Life on January 15, 2021. It is recommended to download any files or other content you may need that are hosted on processors.wiki.ti.com. The site is now set to read only.

  1. Ti Cc2540 Usb Cdc
  2. Cc2540 Usb Dongle
  3. Usb Cc2540 Hid

Driver, you help us out! Ubuntu support for the cc usb dongle Bluetooth forum Bluetooth TI E2E Community. In this video below we walk through a live demo of capturing BLE advertisements using the TI CC2540 USB Dongle BLE sniffer. Please scroll down to find a latest utilities and drivers for your CC2540 USB Dongle driver.

BLE chip:TI CC2540 Work channel: 2.4G Transmission distance: 50m Supports AT directive to configure BLE Support USB virtual serial port, hardware serial port,BLE three-way transparent transmission Support master and slave switch Supports sending over 20byte. Supports iBeacons Interface:Mircor-Usb. I2C driver (software implementation), for controlling I2C components (e.g. EEPROM on BLE Mini) Firmware upgradable via USB port (support TI CC2540 UBL 1.3) USB CDC which provides a virtual UART via USB port for connecting to an external device with the USB port (e.g. PC Windows/Linux or Mac OSX).

Bluetooth Low Energy Wiki Main Page

  • 4Software Architecture Overview

Ti Cc2540 Usb Cdc

Sample App Overview
[edit]

This page details a Serial-to-BLE bridge sample application which can be used as a basis for adding serial communication to an existing project, creating a simple serial packet parser, and achieving maximum over-the-air throughput. The BLEbridge is a modified version of the simpleBLEperipheral project and has both a UART and SPI configuration. It will act as a BLE slave during a connection and a UART / SPI slave for serial communication. Note that version 1.4.0 or later of the BLE stack is needed in order to take advantage of the more robust serial drivers, and the patch below works specifically for version 1.4.1. Also note that there is no UART / SPI master sample code provided: it is up to the user to create code for their own MCU. This guide assumes you have some familiarity with the UART / SPI drivers and does not cover the specific mechanics of each. Here is a general overview of the system:

Note that there are three driver configurations considered here:

  • SPI (with or without power management): using MRDY/SRDY handshaking. The handshaking will be the same regardless of whether or not power management is enabled.
  • UART (without power management): there is no handshaking needed as the device is not going to sleep. Therefore, only the Tx and Rx lines are needed.
  • UART (with power management): using CTS/RTS handshaking to control sleep.


Requirements[edit]

  • v1.4.1 (or later) of the TI BLE stack
  • 1 SmartRF05 EB + CC2541 EM
  • 1 CC2540 USB Dongle
  • Serial cable to connect from computer to SmartRF (possibly USB-to-Serial)
  • IAR 9.20 or later


Project Files[edit]

All of the necessary project files are contained in this patch: File:BLE Bridge v 1 4 1.zip

To apply the patch, open the .zip file and copy the Project folder to C:Texas InstrumentsBLE-CC254x-1.4.1 choosing to replace all conflicting files.

Download

Once the project is opened with IAR, you can select the appropriate serial protocol to use by selecting the CC254-SPI, CC2541-UART, or CC2541-UART-PM configurations.


Software Architecture Overview
[edit]

This section will briefly describe the software architecture of the BLEbridge app. Most of the relevant code will be found in the main application file (BLE_Bridge.c) and the serial interface application file (serialInterface.c). The flow of data from host MCU serial transmission to over-the-air BLE transmission is shown below. First, data is received via DMA into the serial driver buffer: the 256byte spiRxBuf for SPI and the 128 byte uartDMAcfg.rxbuf for UART. Once the respective driver polls and discovers there is Rx data, it will notify the serial parser call back function (cSerialPacketParser). The serial packet format that we are using for tx data in this project is one 'length' byte followed by 'length' amount of data bytes to be sent over-the-air. The parser will first read the length byte then, if the driver has received 'length' amount of bytes, read these bytes into a 500-byte application layer circular buffer (serialBuffer). If the driver hasn't received 'length' amount of bytes, the parser will exit and wait for all of the bytes to be received before moving the data to SerialBuffer.

The application polls for serial data to send over the air via an event which is triggered by an OSAL timer every 7 ms: SBP_SEND_EVT. During this event, the application checks to see if there is any unsent data in the circular buffer - data that has not yet been sent over the air. If there is, the sendData() function will divide this unsent data into (at maximum) 20 byte packets which will be sent to the controller for BLE transmission using a GATT_Notification with an arbitrary handle. If you want this code to co-exist with existing profiles you should make sure to choose a suitable handle. Because the controller only has 4 tx buffers available to store data to be sent during a connection event, it is only possible to send 4 notificatoins per connection event.

Ble bridge sw architecture.png

Cc2540 Usb Dongle

Once a notification is sent down to the controller this data is considered to be sent since the controller will deal with any retries and eventually send the data over-the-air. Therefore, at this point a confirmation is sent back over the serial layer to the host MCU indicating how many bytes were sent over the air. This packet will be of the format 'AB' 'A5' 'LEN' where LEN is the amount of bytes sent over-the-air. The host MCU should use these packets for flow control by using a credit system starting with 500 credits (the size of the circular serialBuffer). However many bytes are sent serially to the CC2541 must be subtracted from the credit count. These credits should then be added back once the confirmation packet is received from the CC2541 indicating how many bytes were sent over the air. This will prevent the host MCU from overwriting unsent data in the circular buffer. Another option is to increase the size of the circular buffer. On the topic of flow control, the central device that the BLEbridge is connecting to via BLE should ensure that it will allow connection updates. This will allow the BLEbridge to update the connection interval to 10 ms, thus taking full advantage of the 7 ms application polling task to empty the circular buffer and send data over-the-air.

Bidirectional Communication[edit]

This project also includes the capability to forward received GATT data to the host MCU via UART / SPI. This was accomplished in the simpleGATTprofile_bridge profile which is a modification of the simpleGATTprofile used in the simpleBLEperipheral project: simple Profile Characteristic 3 is now a 20-byte writeable characteristic. simpleProfileChangeCB() in the application code is called when this characteristic is written to which in turn will call sendDataToHost() to send the received data serially to the host. Data written over-the-air to this characteristic must be of the following format: one 'length' followed by 'length' data bytes. The serial data transmitted to the host MCU will then be of the format 'AB' 'AD' 'data[0]' 'data[1]' ... 'data[LEN]'

Note that this is a a very basic sample. The packet format, for both over-the-air and serial data, should be modified as desired.


Configurable Parameters
[edit]

Cc2540

Described in this section are some parameters that you may want to configure based on your desired throughput and power consumption needs.

  • SBP_SEND_EVT_PERIOD: how often the application tasks polls the circular buffer to send data. The device must wake up each period to service this event so increasing this will decrease throughput and power consumption.
  • desired_min_interval and desired_max_interval: connection interval used for connection parameter udpate. Increasing this will cause the device to wake up less frequently for radio transmission, thus lowering the power consumption and throughput.
  • RX_BUFF_SIZE: size of the circular serial buffer
  • NPI_UART_BR: baud rate for serial communication
  • NPI_UART_FC: whether or not to use hardware flow control for serial communication. This should be set to FALSE for the standard UART (no PM) configuration.


Usb cc2540 hid driver

Other Considerations
[edit]

This section will present some other points of caution or things to consider when stressing the UART / SPI drivers as the BLEbridge does.

Usb Cc2540 Hid

  • Prevent the CPU from halting during RF activity. This is absolutely necessary so and is accomplished via HCI_EXT_HaltDuringRfCmd(HCI_EXT_HALT_DURING_RF_DISABLE);
  • Check the return value when using HalUARTWrite() as it possible there is no room in the UART tx buffer and the call will fail. This is extremely unlikely for the BLEbridge project as we are not transmitting much serial data but in some cases it will occur and you will be forced to retry the write at a later time.
  • Unless needed, set HAL_LCD=FALSE, HAL_LED=FALSE, and HAL_KEY=FALSE in the preprocessor definitions. Besides providing more processing time for the serial driver, HAL_KEY must be set to false when using UART with power management because the RTS ISR uses the same port as HAL_KEY. HAL_LCD must be set to false when using SPI because some LCD pins conflict with the SPI pins.
  • Again note that CTS / RTS handshaking will be necessary to use the UART-PM configuration.



Example Captures
[edit]

coming soon: sample logic captures and over-the-air packet sniffer captures

Usb
{{
  1. switchcategory:MultiCore=
  • For technical support on MultiCore devices, please post your questions in the C6000 MultiCore Forum
  • For questions related to the BIOS MultiCore SDK (MCSDK), please use the BIOS Forum

Please post only comments related to the article SerialBLEbridgeV 1 4 1 here.

Keystone=
  • For technical support on MultiCore devices, please post your questions in the C6000 MultiCore Forum
  • For questions related to the BIOS MultiCore SDK (MCSDK), please use the BIOS Forum

Please post only comments related to the article SerialBLEbridgeV 1 4 1 here.

C2000=For technical support on the C2000 please post your questions on The C2000 Forum. Please post only comments about the article SerialBLEbridgeV 1 4 1 here.DaVinci=For technical support on DaVincoplease post your questions on The DaVinci Forum. Please post only comments about the article SerialBLEbridgeV 1 4 1 here.MSP430=For technical support on MSP430 please post your questions on The MSP430 Forum. Please post only comments about the article SerialBLEbridgeV 1 4 1 here.OMAP35x=For technical support on OMAP please post your questions on The OMAP Forum. Please post only comments about the article SerialBLEbridgeV 1 4 1 here.OMAPL1=For technical support on OMAP please post your questions on The OMAP Forum. Please post only comments about the article SerialBLEbridgeV 1 4 1 here.MAVRK=For technical support on MAVRK please post your questions on The MAVRK Toolbox Forum. Please post only comments about the article SerialBLEbridgeV 1 4 1 here.For technical support please post your questions at http://e2e.ti.com. Please post only comments about the article SerialBLEbridgeV 1 4 1 here.

}}

Links

Amplifiers & Linear
Audio
Broadband RF/IF & Digital Radio
Clocks & Timers
Data Converters

DLP & MEMS
High-Reliability
Interface
Logic
Power Management

Switches & Multiplexers
Temperature Sensors & Control ICs
Wireless Connectivity

Retrieved from 'https://processors.wiki.ti.com/index.php?title=SerialBLEbridgeV_1_4_1&oldid=203893'

Ähnliche Suchanfragen

  • » драйвер ti cc2540 usb cdc
  • » update driver usb cdc driver
  • » mstar cdc usb device driver download
  • » usb cdc modem device driver download
  • » usb cdc driver download dell
  • » usb cdc device xp driver download
  • » usb cdc-rndis driver download
  • » windows 7 usb cdc driver download
  • » download driver mt9234zba-usb-cdc
  • » usb cdc driver free download

cc2540 usb cdc driver download

Ti Cc2540 Usb Driver Download bei UpdateStar
  • Mehr

    USB CDC Device Driver

  • Mehr

    Realtek High Definition Audio Driver 6.0.9030.1

    REALTEK Semiconductor Corp. - 168,6MB - Freeware -
    Audio-Chipsätze von Realtek werden in vielen Motherboards von unterschiedlichen Herstellern eingesetzt. Falls Sie ein solches Motherboard besitzen, können Sie den von Realtek bereitgestellten Treiber installieren. mehr Info...
  • Mehr

    SAMSUNG USB Driver for Mobile Phones 1.7.31

    Samsung Electronics Co., Ltd. - 38,9MB - Freeware -
    Samsung USB Driver for Android Cell Phones & Tablets mehr Info...
  • Mehr

    Driver Booster 8.2.0.308

    Outdated drivers may heavily affect your PC performance and lead to system crashes. Driver Booster Free, designed with IObit's most driver update technology, scans and identifies outdated drivers automatically, and downloads and installs … mehr Info...
  • Mehr

    Realtek Ethernet Controller Driver 10.45.928.2020

    This package installs the software (Ethernet Controller driver). mehr Info...
  • Mehr

    Internet Download Manager 6.38.16

    Internet Download Manager (IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost … mehr Info...
  • Mehr

    Free Download Manager 6.13.1.3483

    Mit dem kostenlosen „Free Download Manager“, der auf Wunsch BitTorrent-Server unterstützt, sparen Sie Zeit beim Herunterladen von Dateien aus dem Internet. mehr Info...
  • Mehr

    NVIDIA HD Audio Driver 1.3.38.40

    High Definition Audio Driver for NVIDIA devices. mehr Info...
  • Mehr

    Realtek USB Card Reader 6.2.9200.39041

    USB-Kartenleser-Treiber für Win XP/Vista/Win7 mehr Info...
  • Mehr

    Nokia Connectivity Cable Driver 7.1.182.0

    Install the driver to establish a cable connection between your compatible Nokia phone and a compatible PC.Important for Windows 2000 or XP or Vista users: Drivers for the Nokia DKE-2, DKU-2, CA-42, CA-53, CA-70, and CA-101 cables are now … mehr Info...
Beschreibungen, die

cc2540 usb cdc driver download

enthalten
  • Mehr

    Realtek High Definition Audio Driver 6.0.9030.1

    REALTEK Semiconductor Corp. - 168,6MB - Freeware -
    Audio-Chipsätze von Realtek werden in vielen Motherboards von unterschiedlichen Herstellern eingesetzt. Falls Sie ein solches Motherboard besitzen, können Sie den von Realtek bereitgestellten Treiber installieren. mehr Info...
  • Mehr

    SAMSUNG USB Driver for Mobile Phones 1.7.31

    Samsung Electronics Co., Ltd. - 38,9MB - Freeware -
    Samsung USB Driver for Android Cell Phones & Tablets mehr Info...
  • Mehr

    Realtek USB Card Reader 6.2.9200.39041

    USB-Kartenleser-Treiber für Win XP/Vista/Win7 mehr Info...
  • Mehr

    Realtek Ethernet Controller Driver 10.45.928.2020

    This package installs the software (Ethernet Controller driver). mehr Info...
  • Mehr

    VLC media player 3.0.11

    Ein Player, der nahezu alle Videodateien abspielt, darunter DVDs, Video-CDs, MPEGs und DivX. Die Besonderheit: Der Player unterstützt MPEG- und DivX-Streaming und kann damit auch Videos schon während des Downloads abspielen. mehr Info...
  • Mehr

    NVIDIA HD Audio Driver 1.3.38.40

    High Definition Audio Driver for NVIDIA devices. mehr Info...
  • Mehr

    Microsoft OneDrive 20.169.0823.0008

    SkyDrive von Microsoft synchronisiert Daten auf verschiedenen Computern. Mit dieser Daten-Synchronisation sparen Sie Zeit und haben 7 GB freien Cloud-Speicher zur Verfügung. mehr Info...
  • Mehr

    Intel Graphics Media Accelerator Driver 15.17.9.2182

    Intel Graphics Media Accelerator Driver ist ein Treiber für Intel GMA-basierte Motherboards. mehr Info...
  • Mehr

    Driver Booster 8.2.0.308

    Outdated drivers may heavily affect your PC performance and lead to system crashes. Driver Booster Free, designed with IObit's most driver update technology, scans and identifies outdated drivers automatically, and downloads and installs … mehr Info...
  • Mehr

    UpdateStar Premium Edition 12.0.1923

    UpdateStar ist die Software, mit der Sie Ihre verwendete Software immer auf dem neuesten Stand und damit sicher halten. UpdateStar verwaltet Ihre Freeware, Shareware und kommerzielle Softwareprodukte. mehr Info...
Weitere Titel, die

cc2540 usb cdc driver download

enthalten
  • Mehr

    Realtek High Definition Audio Driver 6.0.9030.1

    REALTEK Semiconductor Corp. - 168,6MB - Freeware -
    Audio-Chipsätze von Realtek werden in vielen Motherboards von unterschiedlichen Herstellern eingesetzt. Falls Sie ein solches Motherboard besitzen, können Sie den von Realtek bereitgestellten Treiber installieren. mehr Info...
  • Mehr

    SAMSUNG USB Driver for Mobile Phones 1.7.31

    Samsung Electronics Co., Ltd. - 38,9MB - Freeware -
    Samsung USB Driver for Android Cell Phones & Tablets mehr Info...
  • Mehr

    Realtek Ethernet Controller Driver 10.45.928.2020

    This package installs the software (Ethernet Controller driver). mehr Info...
  • Mehr

    NVIDIA Graphics Driver 461.09

    Supported Products:GeForce 500 series:GTX 590, GTX 580, GTX 570, GTX 560 Ti, GTX 560, GTX 550 Ti, GT 545, GT 530, GT 520, 510GeForce 400 series:GTX 480, GTX 470, GTX 465, GTX 460 v2, GTX 460 SE v2, GTX 460 SE, GTX 460, GTS 450, GT 440, GT … mehr Info...
  • Mehr

    Intel(R) USB eXtensible Host Controller Driver 5.0.4.43

Neueste Suchanfragen

  • » ms money 99 unter win 10 installieren
  • » can ij scan utility download
  • » plugin macromedia flash 7 descargar
  • » tracer tu service tool
  • » soft samsung m2070fw
  • » sokia softwar download
  • » pykyra app download
  • » download tap driver windows 10
  • » telecharger gratuitement softcar
  • » lernwerkstat download
  • » 오픈캔버스 다운
  • » sapdtool download
  • » descargar setup de armoury crate lite
  • » sofrel softools descargar
  • » truckpoint download
  • » shockwave flash object flash 32.0.0.445
  • » hd nvr client
  • » download activex excel
  • » global proctect lla
  • » download star pc optimizer