Skip to content
Discussion options

You must be logged in to vote

Are you using the correct PCB type / flags for your radio?

i.e. for the TX15 instead of of

cmake -Wno-dev -DPCB=X10 -DPCBREV=TX16S -DBLUETOOTH=YES -DCMAKE_BUILD_TYPE=Release ../

you should be using

cmake -Wno-dev -DPCB=TX15 -DCMAKE_BUILD_TYPE=Release ../

From start to finish that would be:

mkdir -p build && cd build
cmake -Wno-dev -DPCB=TX15 -DCMAKE_BUILD_TYPE=Release ../
cmake --build . --target arm-none-eabi-configure --parallel 2
cmake --build arm-none-eabi --target firmware

(note: if you ran a cmake command like the one for the TX16S in the build directory and now want to build for a different transmitter type, empty the build directory and start again. i.e. run rm -R * from within…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@hejiayv
Comment options

@pfeerick
Comment options

Answer selected by hejiayv
@hejiayv
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants