Hi,
I’m using the Wio LTE US Version.
Exploring the library for this board:
https://github.com/Seeed-Studio/Wio_LTE_Arduino_Library
I found a file called “board_config.h” with the following content:
[code]
#ifndef BOARD_CONFIG_H_
#define BOARD_CONFIG_H_
#define UART_DEBUG (false)
#define WIO_TRACKER_LTE_V11 (0)
#define WIO_TRACKER_LTE_V12 (1)
// Module power switch
#define MODULE_PWR_ON (1)
#define GROVE_PWR_ON (1)
#define CODEC_PWR_ON (1)
#define GNSS_ON (1)
#define ANTENNA_PWR_ON (1)
#define RGB_LED_ON (1)
#endif
[/code]
Comparing the library structure of the original Arduino libraries, I only see that they use “X.cpp” and “Y.h” files.
My questions:
1) Whats is the reason of this file?
2) Who other files inside the library are invoking/using this file(board_config.h)?
Thanks,
I hope ypur reply.
-JuanToño