mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-24 05:47:58 -05:00
Add license headers to `h`, `c` and `sql` files as this files haven't been checked previously, script now to automatically updates current year in existing licenses.
11 lines
263 B
C
11 lines
263 B
C
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#if defined(TARGET_Linux) && not defined(SERIAL_PORT)
|
|
#define ENABLE_GSM (0)
|
|
#else
|
|
#define ENABLE_GSM (1)
|
|
#endif
|