Updated to latest IDF.
This commit is contained in:
parent
90f5b7696b
commit
c8e99d50a5
|
@ -31,6 +31,9 @@
|
|||
* @author Johny Mattsson <jmattsson@dius.com.au>
|
||||
*/
|
||||
|
||||
#include "sdkconfig.h"
|
||||
#ifdef CONFIG_LUA_MODULE_BTHCI
|
||||
|
||||
#include "module.h"
|
||||
#include "lauxlib.h"
|
||||
#include "task/task.h"
|
||||
|
@ -327,7 +330,8 @@ static int lbthci_init (lua_State *L)
|
|||
for (int i = 0; i < MAX_CMD_Q; ++i)
|
||||
cmd_q[i].cb_ref = LUA_NOREF;
|
||||
|
||||
esp_bt_controller_init ();
|
||||
esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT();
|
||||
esp_bt_controller_init (&bt_cfg);
|
||||
|
||||
esp_vhci_host_register_callback (&bthci_callbacks);
|
||||
|
||||
|
@ -573,3 +577,4 @@ static const LUA_REG_TYPE bthci_map[] =
|
|||
};
|
||||
|
||||
NODEMCU_MODULE(BTHCI, "bthci", bthci_map, lbthci_init);
|
||||
#endif
|
||||
|
|
|
@ -29,8 +29,8 @@ static inline esp_image_header_t flash_load_rom_header (void)
|
|||
#define IRAM_SECTION __attribute__((section(".iram1")))
|
||||
static void IRAM_SECTION update_flash_chip_size (uint32_t sz)
|
||||
{
|
||||
SPIParamCfg (
|
||||
g_rom_flashchip.deviceId,
|
||||
esp_rom_spiflash_config_param (
|
||||
g_rom_flashchip.device_id,
|
||||
sz,
|
||||
g_rom_flashchip.block_size,
|
||||
g_rom_flashchip.sector_size,
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit ecbe5a66f2478879ea3ca4bd6d7cab92065604a9
|
||||
Subproject commit 9050307dfe600c915adaccf8076220d6474876db
|
Loading…
Reference in New Issue