From 4ed4b7caf8737a7a47d6bdcd857958ef27a3fb84 Mon Sep 17 00:00:00 2001 From: Maxim Reznik Date: Tue, 27 Aug 2024 12:21:43 +0300 Subject: [PATCH] enet_stm32 1.0.0 (#1208) --- index/en/enet_stm32/enet_stm32-1.0.0.toml | 32 +++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 index/en/enet_stm32/enet_stm32-1.0.0.toml diff --git a/index/en/enet_stm32/enet_stm32-1.0.0.toml b/index/en/enet_stm32/enet_stm32-1.0.0.toml new file mode 100644 index 00000000..a717cbeb --- /dev/null +++ b/index/en/enet_stm32/enet_stm32-1.0.0.toml @@ -0,0 +1,32 @@ +name = "enet_stm32" +description = "ENet driver for STM32" +version = "1.0.0" + +authors = ["Stephane Carrez"] +maintainers = ["Stephane Carrez ", "Max Reznik "] +maintainers-logins = ["stcarrez", "reznikmm"] +licenses = "Apache-2.0" +website = "https://github.com/stcarrez/ada-enet" +tags = ["stm32", "enet", "driver", "network"] + +[configuration] +generate_c = false + +[configuration.variables] +TX_Ring_Size = {type = "Integer", first = 0, last = 1024, default = 8} +RX_Ring_Size = {type = "Integer", first = 0, last = 1024, default = 8} +Extra_Buffers = {type = "Integer", first = 0, last = 1024, default = 8} + +[[actions]] +type = "test" +command = ["alr", "-C", "../../demos/ping_text_io", "build"] + +[[depends-on]] +enet = "^1.0.0" +cortex_m = "~0.5" +ethernet = "^1.0.0" + +[origin] +commit = "ea3154888f8b93ec44c4ea86a71714e5a12dfd02" +subdir = "./drivers/enet_stm32/" +url = "git+https://github.com/stcarrez/ada-enet.git"