Files
esptool/espefuse.py
2022-03-28 23:06:34 +02:00

19 lines
570 B
Python

#!/usr/bin/env python
#
# SPDX-FileCopyrightText: 2014-2022 Fredrik Ahlberg, Angus Gratton,
# Espressif Systems (Shanghai) CO LTD, other contributors as noted.
#
# SPDX-License-Identifier: GPL-2.0-or-later
# This executable script is a thin wrapper around the main functionality
# in the espefuse Python package
#
# If esptool (with espefuse and espsecure) is installed via setup.py or pip
# then this file is not used at all,
# it's compatibility for the older "run from source dir" espefuse approach.
import espefuse
if __name__ == "__main__":
espefuse._main()