Sync docs

This commit is contained in:
Ivan Kravets
2023-01-04 18:40:04 +02:00
parent d0ca48661c
commit 75716d26ff
2 changed files with 8 additions and 8 deletions

2
docs

Submodule docs updated: 9a201e94ae...3b33aded66

View File

@ -476,13 +476,11 @@ Stable
; Latest stable version
[env:latest_stable]
platform = {name}
board = ...
{board}
; Custom stable version
[env:custom_stable]
platform = {name}@x.y.z
board = ...
{board}
Upstream
~~~~~~~~
@ -490,9 +488,11 @@ Upstream
[env:upstream_develop]
platform = {github_url}.git
board = ...
""".format(
name=p.name, title=p.title, github_url=github_url
{board}""".format(
name=p.name,
title=p.title,
github_url=github_url,
board="board = ...\n" if p.is_embedded() else "",
)
)