#include #include "BpPort.h" #include #include portTickType xTaskGetTickCount() { struct timeval tv; portTickType result; unsigned long intermediate; gettimeofday(&tv, NULL); intermediate = tv.tv_sec * 1000; result = intermediate + (tv.tv_usec / 1000); return result; }