Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code style fixes for nanoframework/nf-interpreter PR#1759 #54

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/HAL/nanoHAL_Capabilites.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ __nfweak bool Target_ConfigUpdateRequiresErase()
return true;
}

// Information on whether the target has a proprietary bootloader
// Information on whether the target has a proprietary bootloader
// Implemented as "weak" to allow it to be replaced with "hard" implementation at target level.
__nfweak bool Target_HasProprietaryBooter()
{
Expand Down
3 changes: 1 addition & 2 deletions targets/CMSIS-OS/ChibiOS/MBN_QUAIL/target_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ HAL_SYSTEM_CONFIG HalSystemConfig = {
HAL_TARGET_CONFIGURATION g_TargetConfiguration;

// this target uses DFU for updates
inline GET_TARGET_CAPABILITIES(TargetCapabilities_DfuUpdate)
inline TARGET_HAS_PROPRITARY_BOOTER(true);
inline GET_TARGET_CAPABILITIES(TargetCapabilities_DfuUpdate) inline TARGET_HAS_PROPRITARY_BOOTER(true);