We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aea6cc commit 1170e88Copy full SHA for 1170e88
esp32/get_idf_libs.py
100644
100755
@@ -1,3 +1,5 @@
1
+#!/usr/bin/python
2
+
3
import os
4
import sys
5
import argparse
@@ -6,8 +8,9 @@
6
8
7
9
10
def main():
11
+ src_def = os.environ['IDF_PATH']+'/examples/wifi/scan/build'
12
cmd_parser = argparse.ArgumentParser(description='Get the precompiled libs from the IDF')
- cmd_parser.add_argument('--idflibs', default=None, help='the path to the idf libraries')
13
+ cmd_parser.add_argument('--idflibs', default=src_def, help='the path to the idf libraries (' + src_def + ')')
14
cmd_args = cmd_parser.parse_args()
15
16
src = cmd_args.idflibs
0 commit comments