Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add channel config function #18

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update mcp3564.h
  • Loading branch information
CezWAT authored Nov 25, 2024
commit 07b922bf349d5aadc2c045bd8ca79b939c816941
1 change: 1 addition & 0 deletions inc/mcp3564.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
void MCP3561_ADC_Shutdown(SPI_HandleTypeDef *hspi);
void MCP3561_ADC_Full_Shutdown(SPI_HandleTypeDef *hspi);
void MCP3561_Channels(SPI_HandleTypeDef *hspi, uint8_t ch_p, uint8_t ch_n);
void MCP3561_InputConf(SPI_HandleTypeDef *hspi, uint8_t boost, uint8_t gain, uint8_t az_mux);
uint32_t MCP3561_ReadADCData (SPI_HandleTypeDef *hspi);
int32_t MCP3561_ReadADCData_24Bit (SPI_HandleTypeDef *hspi);
int32_t MCP3561_ReadADCData_32Bit (SPI_HandleTypeDef *hspi);
Expand Down