| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "../ei_classifier_porting.h" |
| #if EI_PORTING_HIMAX_WE2 == 1 |
|
|
| |
| #include <stdarg.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <math.h> |
| #include "xprintf.h" |
| extern "C" { |
| #include "timer_interface.h" |
| }; |
|
|
| __attribute__((weak)) EI_IMPULSE_ERROR ei_run_impulse_check_canceled() { |
| return EI_IMPULSE_OK; |
| } |
|
|
| |
| |
| |
| __attribute__((weak)) EI_IMPULSE_ERROR ei_sleep(int32_t time_ms) { |
| hx_drv_timer_cm55x_delay_ms(time_ms, TIMER_STATE_DC); |
|
|
| return EI_IMPULSE_OK; |
| } |
|
|
| |
| uint64_t ei_read_timer_ms() |
| { |
| uint32_t tick, loop_cnt; |
| SystemGetTick(&tick, &loop_cnt); |
|
|
| |
| uint64_t elapsed_ms = (uint64_t)loop_cnt * (uint64_t)(SysTick_LOAD_RELOAD_Msk+1) + (SysTick_LOAD_RELOAD_Msk + 1 - tick); |
| |
| elapsed_ms = elapsed_ms / (SystemCoreClock / 1000); |
|
|
| return elapsed_ms; |
| } |
|
|
| uint64_t ei_read_timer_us() |
| { |
| uint32_t tick, loop_cnt; |
| SystemGetTick(&tick, &loop_cnt); |
|
|
| |
| uint64_t elapsed_us = (uint64_t)loop_cnt * (uint64_t)(SysTick_LOAD_RELOAD_Msk+1) + (SysTick_LOAD_RELOAD_Msk + 1 - tick); |
| |
| elapsed_us = elapsed_us / (SystemCoreClock / 1000000); |
|
|
| return elapsed_us; |
| } |
|
|
| void ei_serial_set_baudrate(int baudrate) |
| { |
| |
| } |
|
|
| void ei_putchar(char c) |
| { |
| |
| xputc(c); |
| } |
|
|
| __attribute__((weak)) void ei_printf(const char *format, ...) { |
| va_list args; |
| va_start(args, format); |
| xvprintf(format, args); |
| va_end(args); |
| } |
|
|
| __attribute__((weak)) void ei_printf_float(float f) { |
| float n = f; |
|
|
| static double PRECISION = 0.00001; |
| static int MAX_NUMBER_STRING_SIZE = 32; |
|
|
| char s[MAX_NUMBER_STRING_SIZE]; |
|
|
| if (n == 0.0) { |
| ei_printf("0.00000"); |
| } else { |
| int digit, m; |
| char *c = s; |
| int neg = (n < 0); |
| if (neg) { |
| n = -n; |
| } |
| |
| m = log10(n); |
| if (neg) { |
| *(c++) = '-'; |
| } |
| if (m < 1.0) { |
| m = 0; |
| } |
| |
| while (n > PRECISION || m >= 0) { |
| double weight = pow(10.0, m); |
| if (weight > 0 && !isinf(weight)) { |
| digit = floor(n / weight); |
| n -= (digit * weight); |
| *(c++) = '0' + digit; |
| } |
| if (m == 0 && n > 0) { |
| *(c++) = '.'; |
| } |
| m--; |
| } |
| *(c) = '\0'; |
| ei_printf("%s", s); |
| } |
| } |
|
|
| __attribute__((weak)) void *ei_malloc(size_t size) { |
| return malloc(size); |
| } |
|
|
| __attribute__((weak)) void *ei_calloc(size_t nitems, size_t size) { |
| return calloc(nitems, size); |
| } |
|
|
| __attribute__((weak)) void ei_free(void *ptr) { |
| free(ptr); |
| } |
|
|
| #if defined(__cplusplus) && EI_C_LINKAGE == 1 |
| extern "C" |
| #endif |
| __attribute__((weak)) void DebugLog(const char* s) { |
| ei_printf("%s", s); |
| } |
|
|
| #endif |
|
|