Interface and connectivity ICs

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

FreeRTOS support for BlueNRG-2?

I am evaluating Keil MDK5 for programming my BlueNRG-2 device. I have found that I cannot create a project from scratch with any RTOS support because the CMSIS driver seems to be lacking the Device.Startup section. Looking in the SDK examples for the...

BBeau by Associate
  • 518 Views
  • 2 replies
  • 4 kudos

Using the BlueNRG with FreeRTOS

I try to use the BlueNRG in conjunction with the FreeRTOS but the system always ends up in a hardfault as soon as I querry the BLE services.The initialization of the BlueNRG works and establishing a connection works as well. But it seems like any use...

aj.sk by Associate III
  • 754 Views
  • 4 replies
  • 1 kudos

Hello ! I am trying to start an echo server, parallel to TCP and UDP. When I start them separately - it works. When two separate threads are started - TCP immediately rejects connections and UDP does not respond. How should I do it?

int main(void) { /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init();   SystemClock_Config();   MX_GPIO_Init(); MX_I2C1_Init(); MX_SPI3_Init(); MX_USART1_UART_Init();   osThreadDef(defaultTask,...

TDrzy by Associate II
  • 322 Views
  • 1 replies
  • 0 kudos

BlueNRG with FreeRTOS

Posted on January 12, 2017 at 12:52Hi All,I would like to use BlueNRG as a FreeRTOS task. I use an IBD04A1 board with a Nucleo 401 board.Everything seems to be good, I copied the bluetooth handling codes into a task configured by CubeMX.The task ini...