diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-07-09 22:04:10 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-03-29 20:34:46 -0400 |
commit | 74937326d313ae741c42207035ebcf8c09aa9e01 (patch) | |
tree | e4c42e6dc3fccd54cbd6942019835edc358b8cc3 /docs/Config_Reference.md | |
parent | 91ba9c00e33a8dde38eb303e617c5f878db5922d (diff) | |
download | kutter-74937326d313ae741c42207035ebcf8c09aa9e01.tar.gz kutter-74937326d313ae741c42207035ebcf8c09aa9e01.tar.xz kutter-74937326d313ae741c42207035ebcf8c09aa9e01.zip |
sensor_angle: Add support for bulk querying of spi angle sensors
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Config_Reference.md')
-rw-r--r-- | docs/Config_Reference.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index a0eecf01..0add9aed 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -4001,6 +4001,33 @@ serial: # Auto cancel print when ping varation is above this threshold ``` +### [angle] + +Magnetic hall angle sensor support for reading stepper motor angle +shaft measurements using a1333, as5047d, or tle5012b SPI chips. The +measurements are available via the [API Server](API_Server.md) and +[motion analysis tool](Debugging.md#motion-analysis-and-data-logging). + +``` +[angle my_angle_sensor] +sensor_type: +# The type of the magnetic hall sensor chip. Available choices are +# "a1333", "as5047d", and "tle5012b". This parameter must be +# specified. +#sample_period: 0.000400 +# The query period (in seconds) to use during measurements. The +# default is 0.000400 (which is 2500 samples per second). +cs_pin: +# The SPI enable pin for the sensor. This parameter must be provided. +#spi_speed: +#spi_bus: +#spi_software_sclk_pin: +#spi_software_mosi_pin: +#spi_software_miso_pin: +# See the "common SPI settings" section for a description of the +# above parameters. +``` + ## Common bus parameters ### Common SPI settings |