owl_patch 0.8.0

Rust SDK for Rebel Technology Owl2/3 devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __fastlog_h__
#define __fastlog_h__

#include <stdint.h>

#ifdef __cplusplus
 extern "C" {
#endif

   void fill_icsi_log_table(float* lookup_table, const uint32_t precision);
   float icsi_log(const float val, const float* lookup_table, const uint32_t precision);

#ifdef __cplusplus
}
#endif

#endif // __basicmaths_h__