-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrfconnect] Fixed building issues that appeared after last NCS updat…
…e. (#3244) There are few building issues in the nrfconnect samples, which appeared after last NCS upmerge: * No such file or directory when including "nrf_cc3xx_platform_mutex.h". * 'isascii' was not declared in this scope in CHIPArgParses.cpp file. * 'strcasecmp' was not declared in this scope in CHIPArgeParses.cpp file. * Invalid conversion from 'const device*' to 'device*' in LightingManagerImpl.cpp file, when calling device_get_binding() method. * Temporarly added include path to the missing file in the nrfconnect-app.cmake file, what will be removed after fixing and merging PR with fix in the nrfxlib. * Removed deprecated isascii method, as isgraph check is enough for this use case. * Added -std=gnu++11 option to the compiler flags, as strcasecmp is not present in c++11 sources. * Performed const_cast to fit into the new device_get_binding() method API.
- Loading branch information
1 parent
40f26bf
commit e31b2c5
Showing
4 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters