Skip to content

Library for flashing Espressif SoCs from other MCUs.

Notifications You must be signed in to change notification settings

xennex22/esp-serial-flasher

This branch is 9 commits ahead of, 351 commits behind espressif/esp-serial-flasher:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

46bbfcc · Jan 24, 2021

History

24 Commits
Jan 24, 2021
Jan 30, 2020
May 22, 2020
Mar 17, 2020
May 22, 2020
May 22, 2020
Jan 30, 2020
Jan 29, 2020
Jan 29, 2020
Jan 29, 2020
Jan 30, 2020

Repository files navigation

Serial flasher

Overview

Serial flasher component provides portable library for flashing ESP32 from other host microcontroller. ESP32 is normally programmed via serial interface (UART) and port layer for given host microcontroller has to be implemented, if not available. Details can be found in section below.

Supporting new target

In order to support new target, following function has to be implemented by user:

  • loader_port_serial_read()
  • loader_port_serial_write()
  • loader_port_enter_bootloader()
  • loader_port_delay_ms()
  • loader_port_start_timer()
  • loader_port_remaining_time()

Following functions are part of serial_io.h header for convenience, however, user does not have to strictly follow function signatures, as there are not called directly from library.

  • loader_port_serial_init()
  • loader_port_serial_deinit()
  • loader_port_change_baudrate()
  • loader_port_reset_target()
  • loader_port_debug_print()

Prototypes of all function mentioned above can be found in serial_io.h. Please refer to ports in port directory. Currently, only ESP32 port is available.

Component integration

At this point, this component can only be integrated with IDF. Improvement of existing CMakeList.txt file is to be done.

Known limitations

Size of new binary image has to be known before flashing.

About

Library for flashing Espressif SoCs from other MCUs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 87.6%
  • C 11.9%
  • Other 0.5%