Skip to content
Snippets Groups Projects
Commit 364e94a3 authored by schneider's avatar schneider
Browse files

fix(helloworld): remove unused ecg_write function

parent ed05f0c6
No related branches found
No related tags found
No related merge requests found
......@@ -90,24 +90,6 @@ uint32_t ecg_read_reg(uint8_t reg)
return (rx_data[1] << 16) | (rx_data[2] << 8) | rx_data[3];
}
void ecg_write_reg(uint8_t reg, uint32_t data)
{
spi_req_t req;
uint8_t tx_data[] = {(reg << 1) | 0, 0, 0, 0};
uint8_t rx_data[] = {0, data >> 16, (data >> 8 ) & 0xFF, data & 0xFF};
req.tx_data = tx_data;
req.rx_data = rx_data;
req.len = 4;
req.bits = 8;
req.width = SPI17Y_WIDTH_1;
req.ssel = 0;
req.deass = 1;
req.ssel_pol = SPI17Y_POL_LOW;
req.tx_num = 0;
req.rx_num = 0;
SPI_MasterTrans(SPI, &req);
}
// *****************************************************************************
int main(void)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment