Skip to content
Snippets Groups Projects
ble.c 5.09 KiB
Newer Older
#include "wsf_types.h"
#include "wsf_buf.h"
#include "wsf_trace.h"
schneider's avatar
schneider committed
#include "ble_api.h"
#include "hci_vs.h"
#include "att_api.h"

#include "fs_util.h"
#include "FreeRTOS.h"
#include "timers.h"

#include <stdio.h>
#include <string.h>
#include <stdbool.h>

schneider's avatar
schneider committed
#define WSF_BUF_POOLS 6
#define WSF_BUF_SIZE 0x1048
schneider's avatar
schneider committed
uint32_t SystemHeapSize = WSF_BUF_SIZE;
uint32_t SystemHeap[WSF_BUF_SIZE / 4];
uint32_t SystemHeapStart;
/* Task ID for the ble handler */
static TaskHandle_t ble_task_id = NULL;

/*! Default pool descriptor. */
schneider's avatar
schneider committed
/* clang-format off */
static wsfBufPoolDesc_t mainPoolDesc[WSF_BUF_POOLS] =
{
  {  16,  8 },
  {  32,  4 },
  {  64,  4 },
  { 128,  4 },
  { 256,  4 },
  { 512,  4 }
schneider's avatar
schneider committed
/* clang-format on */

static StaticTimer_t x;
static TimerHandle_t timerWakeup = NULL;
static int lasttick              = 0;
/*! \brief  Stack initialization for app. */
extern void StackInit(void);
extern void AppInit(void);
extern void bleuart_init(void);
/*************************************************************************************************/
void PalSysAssertTrap(void)
schneider's avatar
schneider committed
	while (1) {
	}
/*************************************************************************************************/
static bool_t myTrace(const uint8_t *pBuf, uint32_t len)
schneider's avatar
schneider committed
	extern uint8_t wsfCsNesting;
schneider's avatar
schneider committed
	if (wsfCsNesting == 0) {
		fwrite(pBuf, len, 1, stdout);
		return TRUE;
	}
schneider's avatar
schneider committed
	return FALSE;
/*************************************************************************************************/
static void WsfInit(void)
{
schneider's avatar
schneider committed
	uint32_t bytesUsed;
	WsfTimerInit();

	SystemHeapStart = (uint32_t)&SystemHeap;
	memset(SystemHeap, 0, sizeof(SystemHeap));
	//printf("SystemHeapStart = 0x%x\n", SystemHeapStart);
	//printf("SystemHeapSize = 0x%x\n", SystemHeapSize);
	bytesUsed = WsfBufInit(WSF_BUF_POOLS, mainPoolDesc);
	printf("bytesUsed = %u\n", (unsigned int)bytesUsed);

	WsfTraceRegisterHandler(myTrace);
	WsfTraceEnable(TRUE);
schneider's avatar
schneider committed
/*************************************************************************************************/
/* TODO: We need a source of MACs */
static void setAddress(void)
schneider's avatar
schneider committed
	uint8_t bdAddr[6] = { 0x02, 0x02, 0x44, 0x8B, 0x05, 0x00 };
	char buf[32];

	fs_read_text_file("mac.txt", buf, sizeof(buf));
	printf("mac file: %s\n", buf);
	int a, b, c, d, e, f;
	if (sscanf(buf, "%x:%x:%x:%x:%x:%x", &a, &b, &c, &d, &e, &f) == 6) {
		bdAddr[0] = f;
		bdAddr[1] = e;
		bdAddr[2] = d;
		bdAddr[3] = c;
		bdAddr[4] = b;
		bdAddr[5] = a;
	}

	printf("Setting address -- MAC %02X:%02X:%02X:%02X:%02X:%02X\n",
	       bdAddr[5],
	       bdAddr[4],
	       bdAddr[3],
	       bdAddr[2],
	       bdAddr[1],
	       bdAddr[0]);
	HciVsSetBdAddr(bdAddr);
schneider's avatar
schneider committed
/*************************************************************************************************/
static void vTimerCallback(xTimerHandle pxTimer)
schneider's avatar
schneider committed
	//printf("wake\n");
	int tick = xTaskGetTickCount();
	//printf("WsfTimerUpdate(%d)\n", tick - lasttick);
	WsfTimerUpdate(tick - lasttick);
	lasttick = tick;
	//printf("done\n");
schneider's avatar
schneider committed
/*************************************************************************************************/
static void notify(void)
{
	BaseType_t xHigherPriorityTaskWoken = pdFALSE;
schneider's avatar
schneider committed
	if (xPortIsInsideInterrupt()) {
		vTaskNotifyGiveFromISR(ble_task_id, &xHigherPriorityTaskWoken);
		portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
	} else {
		xTaskNotifyGive(ble_task_id);
	}
schneider's avatar
schneider committed
/*************************************************************************************************/
void WsfTimerNotify(void)
{
schneider's avatar
schneider committed
	//printf("WsfTimerNotify\n");
	// TODO: Can we do this without waking up the task?
	// xTimerChangePeriodFromISR exists
	notify();
schneider's avatar
schneider committed
/*************************************************************************************************/
void wsf_ble_signal_event(void)
{
schneider's avatar
schneider committed
	//printf("wsf_ble_signal_event\n");
	notify();
schneider's avatar
schneider committed
/*************************************************************************************************/
static void scheduleTimer(void)
schneider's avatar
schneider committed
	bool_t timerRunning;
	wsfTimerTicks_t time_to_next_expire;

	vTimerCallback(NULL);
	time_to_next_expire = WsfTimerNextExpiration(&timerRunning);

	if (timerRunning) {
		//printf("time_to_next_expire = %d\n", time_to_next_expire);
		//printf("change period\n");
		if (timerWakeup != NULL) {
			xTimerChangePeriod(
				timerWakeup,
				pdMS_TO_TICKS(time_to_next_expire),
				0
			);
			//printf("insert done\n");
		} else {
			printf("could not create timer\n");
		}
	} else {
		printf("No timer running\n");
	}
schneider's avatar
schneider committed
/*************************************************************************************************/
void vBleTask(void *pvParameters)
	ble_task_id = xTaskGetCurrentTaskHandle();
schneider's avatar
schneider committed
	WsfInit();
	StackInit();
	setAddress();

	NVIC_SetPriority(BTLE_SFD_TO_IRQn, 2);
	NVIC_SetPriority(BTLE_TX_DONE_IRQn, 2);
	NVIC_SetPriority(BTLE_RX_RCVD_IRQn, 2);
	AppInit();
	BleStart();
	AttsDynInit();

	bleuart_init();

	lasttick = xTaskGetTickCount();

	timerWakeup = xTimerCreateStatic(
		"timerWakeup",    /* name */
		pdMS_TO_TICKS(1), /* period/time */
		pdFALSE,          /* auto reload */
		NULL,             /* timer ID */
		vTimerCallback,
		&x); /* callback */

	while (1) {
		ulTaskNotifyTake(pdTRUE, portTICK_PERIOD_MS * 1000);
schneider's avatar
schneider committed
		wsfOsDispatcher();
		scheduleTimer();
	}