trns1997
trns1997
@f4grx just a note we tried out-of-tree build for our custom board and it worked without the need of renaming `Make.defs` to `Makefile` and without the need to add `include...
@xiaoxiang781216 the problem specifically arises when we activate the `-Os/1/2/3` flags while compiling.
@SPRESENSE ah sadly it is not as trivial as we thought. @leducp found an alternative approach to string stream with char conv, he could give you some tips and guide...
I think we can close this, I think it's dealt with
@leducp @Rdk-T i would like your input regarding how to efficiently integrate KickCat. Let us take the arduino due with the lan92 shield. If we follow the nuttx driver convention,...
@acassis @xiaoxiang781216 is there a simple way to test the CI locally?
> > @acassis @xiaoxiang781216 is there a simple way to test the CI locally? > > 1. launch the docker used by ci from here: > https://github.com/apache/nuttx/pkgs/container/nuttx%2Fapache-nuttx-ci-linux > > 2....
> @trns1997 are you planing to adding a new PR about this matter? > > I think it is a good idea to check if "make export" is working, but...
Hi @sastel. We more or less do the following: 1. We fetch nuttx and nuttx-app of set version 2. We then configure our board (this can also be a out-of-tree...
@sastel here is what the `/scripts/toolchain.cmake` looks like: ``` set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_VERSION 1) set(NUTTX 1) set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) set(NUTTX_PATH ${CMAKE_CURRENT_LIST_DIR}/..) include(${NUTTX_PATH}/scripts/target.cmake) set(LINKER_SCRIPT ${NUTTX_PATH}/scripts/${LDNAME}) set(CMAKE_C_FLAGS "${ARCHCPUFLAGS} ${ARCHCFLAGS} -D__NuttX__") set(CMAKE_CXX_FLAGS "${ARCHCPUFLAGS} ${ARCHCXXFLAGS} -D__NuttX__")...