blob: 8935b7f3bb7284f779e92e1c9365f5c326044c86 [file] [log] [blame]
/*
*
* Copyright (c) 2021 Project CHIP Authors
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
// ---- PW Example App Config ----
// EFR32 WSTK Buttons
#define PB0 0
#define PB1 1
// EFR32 WSTK LEDs
#define BSP_LED_0 0
#define BSP_LED_1 1
#define APP_BUTTON_DEBOUNCE_PERIOD_MS 50
#define APP_BUTTON_PRESSED 0
#define APP_BUTTON_RELEASED 1
#define SYSTEM_STATE_LED BSP_LED_0
// EFR Logging
#ifdef __cplusplus
extern "C" {
#endif
void efr32InitLog(void);
void efr32Log(const char * aFormat, ...);
#define EFR32_LOG(...) efr32Log(__VA_ARGS__);
void appError(int err);
#ifdef __cplusplus
}
#endif