Changed uart_init to 115200 and changed eclipse project settings
This commit is contained in:
parent
d5731dd9bd
commit
adf27f4bee
|
@ -26,6 +26,13 @@
|
||||||
</outputEntries>
|
</outputEntries>
|
||||||
</builder>
|
</builder>
|
||||||
<tool id="cdt.managedbuild.tool.gnu.cross.c.compiler.972920545" name="Cross GCC Compiler" superClass="cdt.managedbuild.tool.gnu.cross.c.compiler">
|
<tool id="cdt.managedbuild.tool.gnu.cross.c.compiler.972920545" name="Cross GCC Compiler" superClass="cdt.managedbuild.tool.gnu.cross.c.compiler">
|
||||||
|
<option id="gnu.c.compiler.option.include.paths.804339265" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath">
|
||||||
|
<listOptionValue builtIn="false" value="/home/anonymous/esp-open-sdk/sdk/include"/>
|
||||||
|
<listOptionValue builtIn="false" value=""${workspace_loc:/nodemcu-firmware/include}""/>
|
||||||
|
<listOptionValue builtIn="false" value=""${workspace_loc:/nodemcu-firmware/app/lua}""/>
|
||||||
|
<listOptionValue builtIn="false" value=""${workspace_loc:/nodemcu-firmware/app/modules}""/>
|
||||||
|
<listOptionValue builtIn="false" value=""${workspace_loc:/nodemcu-firmware/app/include}""/>
|
||||||
|
</option>
|
||||||
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1985687892" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1985687892" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
||||||
</tool>
|
</tool>
|
||||||
<tool id="cdt.managedbuild.tool.gnu.cross.cpp.compiler.36308842" name="Cross G++ Compiler" superClass="cdt.managedbuild.tool.gnu.cross.cpp.compiler">
|
<tool id="cdt.managedbuild.tool.gnu.cross.cpp.compiler.36308842" name="Cross G++ Compiler" superClass="cdt.managedbuild.tool.gnu.cross.cpp.compiler">
|
||||||
|
|
|
@ -126,9 +126,9 @@ void user_init(void)
|
||||||
#ifdef DEVELOP_VERSION
|
#ifdef DEVELOP_VERSION
|
||||||
uart_init(BIT_RATE_74880, BIT_RATE_74880);
|
uart_init(BIT_RATE_74880, BIT_RATE_74880);
|
||||||
#else
|
#else
|
||||||
uart_init(BIT_RATE_9600, BIT_RATE_9600);
|
uart_init(BIT_RATE_115200, BIT_RATE_115200);
|
||||||
#endif
|
#endif
|
||||||
// uart_init(BIT_RATE_115200, BIT_RATE_115200);
|
//
|
||||||
|
|
||||||
#ifndef NODE_DEBUG
|
#ifndef NODE_DEBUG
|
||||||
system_set_os_print(0);
|
system_set_os_print(0);
|
||||||
|
|
Loading…
Reference in New Issue