Is it possible to create own tasks/threads?

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hi everybody,

our use case for the Broadcom BCM20736S is communication from a host MCU via BLE to an app on a mobile device.

This is done using the P_UART and a callback function registered to puart_rxCb. This is quite slow and has a high latency in the order of ms, which might be connected to too many traces.

Serializing my own functions doesn't actually create new tasks, right?

#include "bleappevent.h"

BOOL32 bleappevt_serialize(INT32 (*fn)(void*), void* data);

Thanks for your answers!

Best regards

Hannes Baumgart

0 Likes
1 Solution
MichaelF_56
Moderator
Moderator
Moderator
250 sign-ins 25 comments on blog 10 comments on blog

No, the application is not allowed to create threads. The application runs in its own thread.

david_armour

View solution in original post

0 Likes
1 Reply
MichaelF_56
Moderator
Moderator
Moderator
250 sign-ins 25 comments on blog 10 comments on blog

No, the application is not allowed to create threads. The application runs in its own thread.

david_armour

0 Likes