Initial commit

This commit is contained in:
Kurt Sassenrath 2024-09-22 15:34:12 -07:00
commit 17333ddb46
4 changed files with 29 additions and 0 deletions

0
BUILD Normal file
View File

6
MODULE.bazel Normal file
View File

@ -0,0 +1,6 @@
module(
name = "esp_platforms",
version = "0.0.1",
compatibility_level = 1,
)

11
cpu/BUILD Normal file
View File

@ -0,0 +1,11 @@
constraint_setting(name = "cpu")
constraint_value(
name = "lx106",
constraint_setting = ":cpu",
)
alias(
name = "esp8266",
actual = ":lx106",
)

12
os/BUILD Normal file
View File

@ -0,0 +1,12 @@
package(
default_visibility = ["//visibility:public"],
)
constraint_setting(name = "os")
constraint_value(
name = "freertos",
constraint_setting = "os",
)