Skip to content

Commit e5edcf7

Browse files
authored
Merge branch 'espressif:master' into uart_refactoring
2 parents 4ea155c + 90c01da commit e5edcf7

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

cores/esp32/firmware_msc_fat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ static size_t cplstr(void *dst, const void * src, size_t max_len){
2929
//copy up to max_len chars from src to dst, adding spaces up to max_len. do not terminate
3030
static void cplstrsp(void *dst, const void * src, size_t max_len){
3131
size_t l = cplstr(dst, src, max_len);
32-
for(l; l < max_len; l++){
32+
for(; l < max_len; l++){
3333
((uint8_t*)dst)[l] = 0x20;
3434
}
3535
}

docs/source/boards/boards.rst

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,22 @@ Add here the third party boards, listed by vendors.
8181
creating an `issue on GitHub <https://github.com/espressif/arduino-esp32/issues>`_ and directly
8282
link/mention the vendor in the issue description.
8383

84-
Generic Vendor
85-
**************
86-
87-
.. toctree::
88-
:maxdepth: 1
84+
LOLIN
85+
*****
8986

90-
Generic Board Name <generic>
87+
* `LOLIN D32 <https://www.wemos.cc/en/latest/d32/d32.html>`_
88+
* `LOLIN D32 Pro <https://www.wemos.cc/en/latest/d32/d32_pro.html>`_
9189

92-
.. note::
93-
Create one file per board or one file with multiple boards. Do not add board information/description on this file.
90+
Generic Vendor
91+
**************
92+
93+
.. toctree::
94+
:maxdepth: 1
95+
96+
Generic Board Name <generic>
97+
98+
.. note::
99+
Create one file per board or one file with multiple boards. Do not add board information/description on this file.
94100

95101
Resources
96102
---------

0 commit comments

Comments
 (0)