123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- /*
- This example code is in the Public Domain (or CC0 licensed, at your option.)
- Unless required by applicable law or agreed to in writing, this
- software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- CONDITIONS OF ANY KIND, either express or implied.
- */
- #define LOG_LOCAL_LEVEL ESP_LOG_DEBUG
- #include <stdio.h>
- #include "esp_log.h"
- #include "driver/gpio.h"
- #include "driver/i2c.h"
- #include "driver/spi_master.h"
- // #include "Configurator.h"
- #pragma message("fixme: look for TODO below")
- #include "accessors.h"
- #include "globdefs.h"
- #include "display.h"
- #include "cJSON.h"
- #include "driver/gpio.h"
- #include "stdbool.h"
- #include "driver/adc.h"
- #include "esp_attr.h"
- #include "soc/spi_periph.h"
- #include "esp_err.h"
- #include "soc/rtc.h"
- #include "sdkconfig.h"
- #include "soc/efuse_periph.h"
- #include "driver/gpio.h"
- #include "driver/spi_common_internal.h"
- #if CONFIG_IDF_TARGET_ESP32
- #include "esp32/rom/efuse.h"
- #endif
- #include "tools.h"
- #include "monitor.h"
- #include "messaging.h"
- #include "network_ethernet.h"
- static const char *TAG = "services";
- const char *i2c_name_type="I2C";
- const char *spi_name_type="SPI";
- cJSON * gpio_list=NULL;
- #define min(a,b) (((a) < (b)) ? (a) : (b))
- #ifndef QUOTE
- #define QUOTE(name) #name
- #endif
- #ifndef STR
- #define STR(macro) QUOTE(macro)
- #endif
- extern cJSON * get_gpio_list(bool refresh);
- bool are_statistics_enabled(){
- #if defined(CONFIG_FREERTOS_USE_TRACE_FACILITY) && defined (CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS)
- return true;
- #endif
- return false;
- }
- /****************************************************************************************
- *
- */
- // static char * config_spdif_get_string(){
- // // return config_alloc_get_str("spdif_config", CONFIG_SPDIF_CONFIG, "bck=" STR(CONFIG_SPDIF_BCK_IO)
- // // ",ws=" STR(CONFIG_SPDIF_WS_IO) ",do=" STR(CONFIG_SPDIF_DO_IO));
- // config_alloc_get_str("spdif_config", CONFIG_SPDIF_CONFIG, "bck=" STR(CONFIG_SPDIF_BCK_IO)
- // ",ws=" STR(CONFIG_SPDIF_WS_IO) ",do=" STR(CONFIG_SPDIF_DO_IO));
- // }
- /****************************************************************************************
- *
- */
- // static char * get_dac_config_string(){
- // return config_alloc_get_str("dac_config", CONFIG_DAC_CONFIG, "model=i2s,bck=" STR(CONFIG_I2S_BCK_IO)
- // ",ws=" STR(CONFIG_I2S_WS_IO) ",do=" STR(CONFIG_I2S_DO_IO)
- // ",sda=" STR(CONFIG_I2C_SDA) ",scl=" STR(CONFIG_I2C_SCL)
- // ",mute=" STR(CONFIG_MUTE_GPIO));
- // }
- /****************************************************************************************
- *
- */
- bool is_dac_config_locked(){
- #if ( defined CONFIG_DAC_CONFIG )
- if(strlen(CONFIG_DAC_CONFIG) > 0){
- return true;
- }
- #endif
- #if defined(CONFIG_I2S_BCK_IO) && CONFIG_I2S_BCK_IO>0
- return true;
- #endif
- return false;
- }
- /****************************************************************************************
- *
- */
- const i2c_config_t * config_i2c_get(int * i2c_port) {
- sys_I2CBus * bus = NULL;
- static i2c_config_t i2c = {
- .mode = I2C_MODE_MASTER,
- .sda_io_num = -1,
- .sda_pullup_en = GPIO_PULLUP_ENABLE,
- .scl_io_num = -1,
- .scl_pullup_en = GPIO_PULLUP_ENABLE,
- .master.clk_speed = 0,
- };
- if(SYS_I2CBUS(bus)){
- if(bus->has_scl){
- i2c.scl_io_num = bus->scl.pin;
- }
- else {
- ESP_LOGE(TAG,"%s missing for i2c","SCL");
- }
-
- if(bus->has_sda){
- i2c.sda_io_num= bus->sda.pin;
- }
- else {
- ESP_LOGE(TAG,"%s missing for i2c","SDA");
- }
- if(bus->speed>0){
- i2c.master.clk_speed = bus->speed;
- }
- if(bus->port != sys_I2CPortEnum_UNSPECIFIED_PORT){
- i2c_system_port = bus->port - sys_I2CPortEnum_I2CPort0;
- }
- // TODO: untangle i2c system port handling
- if(i2c_port) {
- *i2c_port=i2c_system_port;
- }
-
- }
- return &i2c;
- }
- void config_set_gpio(int * pin, sys_GPIO * gpio,bool has_value, const char * name, bool mandatory){
- if(has_value){
- ESP_LOGD(TAG, "Setting pin %d as %s", gpio->pin, name);
- if(pin) *pin= gpio->pin;
- }
- else if(mandatory) {
- ESP_LOGE(TAG,"Pin %s has no value",name);
- }
- else {
- ESP_LOGD(TAG,"Pin %s has no value",name);
- }
- }
- /****************************************************************************************
- *
- */
- const spi_bus_config_t * config_spi_get(spi_host_device_t * spi_host) {
- // don't memset all to 0xff as it's more than just GPIO
- static spi_bus_config_t spi = {
- .mosi_io_num = -1,
- .sclk_io_num = -1,
- .miso_io_num = -1,
- .quadwp_io_num = -1,
- .quadhd_io_num = -1
- };
- if(platform->has_dev && platform->dev.has_spi){
- ESP_LOGI(TAG,"SPI Configuration found");
- ASSIGN_GPIO(spi.mosi_io_num,platform->dev.spi,mosi,true);
- ASSIGN_GPIO(spi.miso_io_num,platform->dev.spi,miso,false);
- ASSIGN_GPIO(spi.sclk_io_num,platform->dev.spi,clk,true);
- ASSIGN_GPIO(spi_system_dc_gpio,platform->dev.spi,dc,true);
- // only VSPI (1) can be used as Flash and PSRAM run at 80MHz
- if(platform->dev.spi.host!=sys_HostEnum_UNSPECIFIED_HOST){
- spi_system_host = platform->dev.spi.host;
- }
- }
- else {
- ESP_LOGI(TAG,"SPI not configured");
- }
-
- if(spi_host) *spi_host = spi_system_host;
- return &spi;
- }
|