Fix Git spelling and add LFS
This commit is contained in:
parent
91656c3d76
commit
4d87e89059
|
@ -11,8 +11,8 @@ Occasional NodeMCU firmware hackers don't need full control over the complete to
|
||||||
### Linux Build Environment
|
### Linux Build Environment
|
||||||
NodeMCU firmware developers commit or contribute to the project on GitHub and might want to build their own full fledged build environment with the complete tool chain. There is a [post in the esp8266.com Wiki](http://www.esp8266.com/wiki/doku.php?id=toolchain#how_to_setup_a_vm_to_host_your_toolchain) that describes this.
|
NodeMCU firmware developers commit or contribute to the project on GitHub and might want to build their own full fledged build environment with the complete tool chain. There is a [post in the esp8266.com Wiki](http://www.esp8266.com/wiki/doku.php?id=toolchain#how_to_setup_a_vm_to_host_your_toolchain) that describes this.
|
||||||
|
|
||||||
### git
|
### Git
|
||||||
If you decide to build with either the Docker image or the native environment then use git to clone the firmware sources instead of downloading the zip file from GitHub. Only cloning with git will retrieve the referenced submodules:
|
If you decide to build with either the Docker image or the native environment then use Git to clone the firmware sources instead of downloading the ZIP file from GitHub. Only cloning with Git will retrieve the referenced submodules:
|
||||||
```
|
```
|
||||||
git clone --recurse-submodules -b <branch> https://github.com/nodemcu/nodemcu-firmware.git
|
git clone --recurse-submodules -b <branch> https://github.com/nodemcu/nodemcu-firmware.git
|
||||||
```
|
```
|
||||||
|
@ -50,6 +50,9 @@ To enable runtime debug messages to serial console edit `app/include/user_config
|
||||||
#define DEVELOP_VERSION
|
#define DEVELOP_VERSION
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### LFS
|
||||||
|
LFS is turned off by default. See the [LFS documentation](./lfs.md) for supported config options (e.g. how to enable it).
|
||||||
|
|
||||||
### Set UART Bit Rate
|
### Set UART Bit Rate
|
||||||
The initial baud rate at boot time is 115200bps. You can change this by
|
The initial baud rate at boot time is 115200bps. You can change this by
|
||||||
editing `BIT_RATE_DEFAULT` in `app/include/user_config.h`:
|
editing `BIT_RATE_DEFAULT` in `app/include/user_config.h`:
|
||||||
|
|
Loading…
Reference in New Issue