Compare commits

..

No commits in common. "569afe84e965b81fa9744eb511beeb092dac2776" and "877784640d7976aab84398de6a5b376033fd56d1" have entirely different histories.

View File

@ -152,7 +152,6 @@ void init_io(void)
ESP_LOGI(TAG, "IO initialized");
}
__attribute__((weak)) // duplicate this symbol if your pin is controlled by e.g. I2C
void hal_pin_rxtx(u1_t val)
{
if (pin_rx_tx == LMIC_UNUSED_PIN)
@ -161,7 +160,6 @@ void hal_pin_rxtx(u1_t val)
gpio_set_level(pin_rx_tx, val);
}
__attribute__((weak)) // duplicate this symbol if your pin is controlled by e.g. I2C
void hal_pin_rst(u1_t val)
{
if (pin_rst == LMIC_UNUSED_PIN)
@ -254,7 +252,6 @@ void hal_spi_read(u1_t cmd, u1_t *buf, size_t len)
ESP_ERROR_CHECK(err);
}
void IRAM_ATTR assert_nss(spi_transaction_t* trans)
{
gpio_set_level(pin_nss, 0);