fix(esp_modem): fix esp_modem build issue

This commit is contained in:
Suren Gabrielyan
2023-04-27 12:25:59 +04:00
parent f67511c2c1
commit ab94566995
3 changed files with 4 additions and 25 deletions

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#pragma once #pragma once
#include "esp_modem_command_declare_helper.inc" #include "generate/esp_modem_command_declare_helper.inc"
#define DECLARE_ALL_COMMAND_APIS(...) \ #define DECLARE_ALL_COMMAND_APIS(...) \

View File

@ -2,41 +2,20 @@
rm -rf html rm -rf html
# Generate C++ API header of the DCE # Generate C++ API header of the DCE
cat esp_modem_command_declare.inc | clang++ -E -P -CC -xc++ -I../../components/esp_modem/include -DGENERATE_DOCS - | sed -n '1,/DCE command documentation/!p' > en/esp_modem_dce.hpp cat ../../components/esp_modem/include/generate/esp_modem_command_declare.inc | clang++ -E -P -CC -xc++ -I../../components/esp_modem/include -DGENERATE_DOCS - | sed -n '1,/DCE command documentation/!p' > en/esp_modem_dce.hpp
# Generate C API header of the modem_api.h # Generate C API header of the modem_api.h
cat esp_modem_command_declare.inc | clang -E -P -CC -xc -I../../components/esp_modem/include -DGENERATE_DOCS - | sed -n '1,/DCE command documentation/!p' > en/esp_modem_api_commands.h cat ../../components/esp_modem/include/generate/esp_modem_command_declare.inc | clang -E -P -CC -xc -I../../components/esp_modem/include -DGENERATE_DOCS - | sed -n '1,/DCE command documentation/!p' > en/esp_modem_api_commands.h
# RST with links to C++ API # RST with links to C++ API
cat esp_modem_command_declare.inc | clang -E -P -xc -I../../components/esp_modem/include -DGENERATE_DOCS -DGENERATE_RST_LINKS - | sed 's/NL/\n/g' > en/cxx_api_links.rst cat ../../components/esp_modem/include/generate/esp_modem_command_declare.inc | clang -E -P -xc -I../../components/esp_modem/include -DGENERATE_DOCS -DGENERATE_RST_LINKS - | sed 's/NL/\n/g' > en/cxx_api_links.rst
build-docs --target esp32 --language en build-docs --target esp32 --language en
cp -rf _build/en/esp32/html . cp -rf _build/en/esp32/html .
rm -rf _build __pycache__ rm -rf _build __pycache__
## Modifes some version and target fields of index.html
#echo "<script type="text/javascript">
#window.onload =(function() {
# var myAnchor = document.getElementById('version-select');
# var mySpan = document.createElement('input');
# mySpan.setAttribute('type', 'text');
# mySpan.setAttribute('maxLength', '10');
# mySpan.value = 'latest';
# mySpan.setAttribute('disabled', true);
# myAnchor.parentNode.replaceChild(mySpan, myAnchor);
#
# var myAnchor = document.getElementById('target-select');
# var mySpan = document.createElement('input');
# mySpan.setAttribute('type', 'text');
# mySpan.setAttribute('maxLength', '10');
# mySpan.value = 'all targets';
# mySpan.setAttribute('disabled', true);
# myAnchor.parentNode.replaceChild(mySpan, myAnchor);
#
#})();
#</script>" >> html/index.html
# Modifes some version and target fields of index.html # Modifes some version and target fields of index.html
echo "<script type='text/javascript'> echo "<script type='text/javascript'>