Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
terjeio committed Sep 22, 2023
1 parent 9165562 commit 7aa58dd
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 50 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ __Important:__
If enabling ftp upload to the SD card then _ffconf.h_ in the ESP SDK has to be edited, `#define FF_FS_RPATH` must be changed to 2 or you will get a compiler error.
_ffconf.h_ is located in the subfolder _esp-idf\components\fatfs\src_ in the ESP32 SDK installation. The ESP32 SDK is typically installed in the user folder.

This driver can be built with the [Web Builder](http://svn.io-engineering.com:8080/?driver?driver=ESP32).

### How to build using ESP-IDF v4.3:

While this manual briefly describes basic build process on Linux OS, you can find more details
Expand Down Expand Up @@ -82,4 +84,5 @@ dns_server.c is Copyright (c) 2019 Tony Pottier - from his [ESP32 WiFi Manager](
Snippets of code is extracted from Espressif ESP-IDF examples which are public domain.

---
2023-04-29
2023-09-20

98 changes: 49 additions & 49 deletions driver.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,33 +47,19 @@
},
"boards": [
{
"name": "BDRING v3.5",
"symbol": "BOARD_BDRING_V3P5",
"URL": "",
"MAP": "main/bdring_v3.5_map.h",
"caps": {
"axes": 3,
"digital_in": 0,
"digital_out": 0,
"serial_ports": 1,
"eeprom": 0,
"fram": 0,
"i2c": 0
}
},
{
"name": "BDRING v4",
"symbol": "BOARD_BDRING_V4",
"URL": "",
"MAP": "main/bdring_v4_map.h",
"name": "BlackBox X32",
"symbol": "BOARD_BLACKBOX_X32",
"URL": "https://docs.openbuilds.com/doku.php?id=docs:blackbox-x32:start",
"MAP": "main/BlackBoxX32_map.h",
"caps": {
"axes": 3,
"axes": 4,
"digital_in": 0,
"digital_out": 0,
"serial_ports": 2,
"safety_door": 1,
"eeprom": 0,
"fram": 0,
"i2c": 0
"i2c": 0,
"sdcard": 1
}
},
{
Expand All @@ -92,7 +78,7 @@
"sdcard": 0,
"trinamic_spi_cs": 1,
"trinamic_spi_chain": 1,
"trinamic_uart_n": 1,
"trinamic_uart_n": 0,
"trinamic_uart_addr": 0
}
},
Expand Down Expand Up @@ -209,54 +195,68 @@
}
},
{
"name": "BlackBox X32",
"symbol": "BOARD_BLACKBOX_X32",
"URL": "https://docs.openbuilds.com/doku.php?id=docs:blackbox-x32:start",
"MAP": "main/BlackBoxX32_map.h",
"name": "CNC 3040",
"symbol": "BOARD_CNC3040",
"URL": "https://github.com/shaise/grblHAL_CNC3040",
"MAP": "main/cnc3040_map.h",
"caps": {
"axes": 4,
"serial_ports": 2,
"eeprom": 1,
"digital_in": 0,
"digital_out": 0,
"probe": 1,
"safety_door": 1,
"mpg_mode": 0,
"sdcard": 0,
"wifi": 1,
"fram": 1,
"i2c": 0
}
},
{
"name": "BDRING v3.5",
"symbol": "BOARD_BDRING_V3P5",
"URL": "",
"MAP": "main/bdring_v3.5_map.h",
"caps": {
"axes": 3,
"digital_in": 0,
"digital_out": 0,
"serial_ports": 1,
"eeprom": 0,
"fram": 0,
"i2c": 0,
"sdcard": 1
"i2c": 0
}
},
{
"name": "CNC BoosterPack",
"symbol": "BOARD_CNC_BOOSTERPACK",
"URL": "https:/terjeio/CNC_Boosterpack",
"MAP": "main/boosterpack_map.h",
"name": "BDRING v4",
"symbol": "BOARD_BDRING_V4",
"URL": "",
"MAP": "main/bdring_v4_map.h",
"caps": {
"axes": 3,
"digital_in": 0,
"digital_out": 0,
"serial_ports": 2,
"eeprom": 1,
"fram": 1,
"i2c": 1
"eeprom": 0,
"fram": 0,
"i2c": 0
}
},
{
"name": "CNC 3040",
"symbol": "BOARD_CNC3040",
"URL": "https:/shaise/grblHAL_CNC3040",
"MAP": "main/cnc3040_map.h",
"name": "CNC BoosterPack",
"symbol": "BOARD_CNC_BOOSTERPACK",
"URL": "https:/terjeio/CNC_Boosterpack",
"MAP": "main/boosterpack_map.h",
"caps": {
"axes": 4,
"serial_ports": 2,
"eeprom": 1,
"axes": 3,
"digital_in": 0,
"digital_out": 0,
"probe": 1,
"safety_door": 1,
"mpg_mode": 0,
"sdcard": 0,
"wifi": 1,
"serial_ports": 2,
"eeprom": 1,
"fram": 1,
"i2c": 0
"i2c": 1
}
}
]
Expand Down

0 comments on commit 7aa58dd

Please sign in to comment.