Skip to content

Commit

Permalink
Load Cell Endstop
Browse files Browse the repository at this point in the history
Implement MCU features that enable using an adc to stop an axis
  • Loading branch information
garethky committed Jun 17, 2024
1 parent 20035c2 commit 74a0678
Show file tree
Hide file tree
Showing 4 changed files with 442 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ config WANT_ADS1220
bool
depends on HAVE_GPIO_SPI
default y
config WANT_LOAD_CELL_ENDSTOP
bool
depends on WANT_HX71X || WANT_ADS1220
default y
config WANT_SOFTWARE_I2C
bool
depends on HAVE_GPIO && HAVE_GPIO_I2C
Expand Down
1 change: 1 addition & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ src-$(CONFIG_WANT_LDC1612) += sensor_ldc1612.c
src-$(CONFIG_WANT_HX71X) += sensor_hx71x.c
src-$(CONFIG_WANT_ADS1220) += sensor_ads1220.c
src-$(CONFIG_NEED_SENSOR_BULK) += sensor_bulk.c
src-$(CONFIG_WANT_LOAD_CELL_ENDSTOP) += load_cell_endstop.c
Loading

0 comments on commit 74a0678

Please sign in to comment.