Cradicle Explorer
MaixPy.git
Info
Issues
Patches
Wallets
Source
Source
.github
assets
components
boards
drivers
kendryte_sdk
include
libs
src
sipeed_conv.c
sipeed_i2c.c
sipeed_math.c
sipeed_mem.c
sipeed_sk9822.c
sipeed_spi.c
sipeed_sys.c
sipeed_yolo2.c
src2
.gitignore
CMakeLists.txt
Kconfig
kendryte-standalone-sdk
micropython
spiffs
utils
projects
tools
.gitignore
.gitmodules
.travis.yml
Kconfig
LICENSE.md
README.md
README_ZH.md
build.md
requirements.txt
/
components
/
kendryte_sdk
/
src
/ sipeed_math.c
sipeed_math.c
1
#include "math.h"
2
3
inline float roundf(float x)
4
{
5
return (float)((int)(x));
6
}