Fix LVGL "C" brace (#18942)

This commit is contained in:
Victor Oliveira 2020-08-07 03:53:43 -03:00 committed by GitHub
parent 35e11e5f8b
commit 5e08efb0fc
Signed by untrusted user: GitHub
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -21,10 +21,6 @@
*/
#pragma once
#ifdef __cplusplus
extern "C" { /* C-declarations for C++ */
#endif
#include "../../../../inc/MarlinConfig.h"
#include <lvgl.h>
@ -125,6 +121,10 @@ extern "C" { /* C-declarations for C++ */
// SD card information first addr
#define VAR_INF_ADDR 0x000000
#ifdef __cplusplus
extern "C" { /* C-declarations for C++ */
#endif
union union32 {
uint8_t bytes[4];
uint32_t dwords;