2021-10-27 05:43:28 -03:00
|
|
|
/*
|
|
|
|
* This file is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This file is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2022-11-29 17:54:25 -04:00
|
|
|
#define HAL_ESP32_BOARD_NAME "esp32-icarus"
|
|
|
|
|
2022-11-29 16:19:05 -04:00
|
|
|
#define HAL_INS_DEFAULT AP_FEATURE_BOARD_DETECT
|
2021-10-27 05:43:28 -03:00
|
|
|
#define HAL_INS_MPU60x0_NAME "MPU6000"
|
2022-11-29 16:19:05 -04:00
|
|
|
#define TRUE 1
|
2021-10-27 05:43:28 -03:00
|
|
|
|
|
|
|
#define HAL_BARO_DEFAULT HAL_BARO_BMP280_I2C
|
|
|
|
#define HAL_BARO_BMP280_BUS 0
|
|
|
|
#define HAL_BARO_BMP280_I2C_ADDR (0x76)
|
|
|
|
|
|
|
|
#define ALLOW_ARM_NO_COMPASS
|
|
|
|
|
2022-11-29 16:19:05 -04:00
|
|
|
#define HAL_ESP32_SDCARD //after enabled, uncomment one of below
|
|
|
|
#define HAL_ESP32_SDMMC
|
|
|
|
//#define HAL_ESP32_SDSPI {.host=VSPI_HOST, .dma_ch=2, .mosi=GPIO_NUM_2, .miso=GPIO_NUM_15, .sclk=GPIO_NUM_26, .cs=GPIO_NUM_21}
|
2021-10-27 05:43:28 -03:00
|
|
|
#define HAL_BOARD_LOG_DIRECTORY "/SDCARD/APM/LOGS"
|
2022-11-29 16:19:05 -04:00
|
|
|
#define HAL_BOARD_STORAGE_DIRECTORY "/SDCARD/APM/STORAGE"
|
2021-10-27 05:43:28 -03:00
|
|
|
#define HAL_BOARD_TERRAIN_DIRECTORY "/SDCARD/APM/TERRAIN"
|
|
|
|
|
|
|
|
#define HAL_ESP32_WIFI 1
|
|
|
|
|
|
|
|
#define HAL_ESP32_NO_MAVLINK_0 1
|
|
|
|
|
|
|
|
#define HAL_ESP32_RCIN GPIO_NUM_36
|
|
|
|
|
|
|
|
#define HAL_ESP32_RCOUT {GPIO_NUM_9, GPIO_NUM_10, GPIO_NUM_27, GPIO_NUM_13, GPIO_NUM_22, GPIO_NUM_21}
|
|
|
|
|
|
|
|
#define HAL_ESP32_SPI_BUSES \
|
|
|
|
{.host=VSPI_HOST, .dma_ch=1, .mosi=GPIO_NUM_23, .miso=GPIO_NUM_19, .sclk=GPIO_NUM_18}
|
|
|
|
|
|
|
|
#define HAL_ESP32_SPI_DEVICES \
|
|
|
|
{.name="MPU6000", .bus=0, .device=1, .cs=GPIO_NUM_5, .mode=0, .lspeed=1*MHZ, .hspeed=6*MHZ}
|
|
|
|
|
|
|
|
#define HAL_ESP32_I2C_BUSES \
|
|
|
|
{.port=I2C_NUM_0, .sda=GPIO_NUM_26, .scl=GPIO_NUM_25, .speed=400*KHZ, .internal=false}
|
|
|
|
|
|
|
|
#define HAL_ESP32_UART_DEVICES \
|
|
|
|
{.port=UART_NUM_0, .rx=GPIO_NUM_3 , .tx=GPIO_NUM_1 },\
|
|
|
|
{.port=UART_NUM_1, .rx=GPIO_NUM_34, .tx=GPIO_NUM_32},\
|
|
|
|
{.port=UART_NUM_2, .rx=GPIO_NUM_35, .tx=GPIO_NUM_33}
|
|
|
|
|
2022-11-29 16:19:05 -04:00
|
|
|
#define HAL_DISABLE_ADC_DRIVER 1
|
|
|
|
#define HAL_USE_ADC 0
|
2022-11-29 17:54:25 -04:00
|
|
|
#define HAL_ESP32_RMT_RX_PIN_NUMBER 36
|