| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "../ei_classifier_porting.h" |
| #if EI_PORTING_SEEED_VISION_AI == 1 |
|
|
| |
| #include <stdarg.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| |
| #include "hx_drv_timer.h" |
| #include <math.h> |
|
|
| #include "embARC_debug.h" |
|
|
|
|
| |
| #define HIMAX_TIMER_CLK_FREQ_HZ 400000000 |
| #define HIMAX_TIMER_TICK_1SEC (HIMAX_TIMER_CLK_FREQ_HZ/1) |
| #define HIMAX_TIMER_TICK_1MSEC (HIMAX_TIMER_TICK_1SEC/1000) |
|
|
| |
|
|
| __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) { |
|
|
| board_delay_ms(time_ms); |
|
|
| return EI_IMPULSE_OK; |
| } |
|
|
| |
| uint64_t ei_read_timer_ms() |
| { |
| static uint64_t system_time_ms = 0; |
| static uint64_t prev_tick_us = 0; |
| uint64_t tick_us; |
| int64_t diff_tick_us, elapsed_time_ms; |
|
|
| tick_us = board_get_cur_us(); |
| diff_tick_us = tick_us - prev_tick_us; |
| elapsed_time_ms = diff_tick_us / 1000; |
|
|
| |
| if (elapsed_time_ms > 0) { |
| system_time_ms += elapsed_time_ms; |
| prev_tick_us = tick_us; |
| } |
|
|
| return system_time_ms; |
| } |
|
|
| uint64_t ei_read_timer_us() |
| { |
| return board_get_cur_us(); |
| } |
|
|
| void ei_serial_set_baudrate(int baudrate) |
| { |
| |
| } |
|
|
| void ei_putchar(char c) |
| { |
| |
| ei_printf("%c", 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 |
|
|