Skip to content

Commit

Permalink
STM32: Fix writing boot loader during OTA
Browse files Browse the repository at this point in the history
PUBLISHED_FROM=aef9c66c71c06ab1d32404e8496bc2049aa5f620
  • Loading branch information
rojer authored and cesantabot committed Mar 18, 2020
1 parent 50f47be commit 440840d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/platforms/platform_windows.h
Expand Up @@ -50,7 +50,7 @@
#include <windows.h>
#include <process.h>

#if _MSC_VER < 1700
#if defined(_MSC_VER) && (_MSC_VER < 1700)
typedef int bool;
#else
#include <stdbool.h>
Expand Down
2 changes: 1 addition & 1 deletion mjs.c
Expand Up @@ -196,7 +196,7 @@
#include <windows.h>
#include <process.h>

#if _MSC_VER < 1700
#if defined(_MSC_VER) && (_MSC_VER < 1700)
typedef int bool;
#else
#include <stdbool.h>
Expand Down

0 comments on commit 440840d

Please sign in to comment.