Skip to content
Snippets Groups Projects
Commit 67cb31c6 authored by rahix's avatar rahix
Browse files

chore(max30001): Use proper type for constants


Fix sign-compare warnings for these constants.

Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 39411101
No related branches found
No related tags found
No related merge requests found
......@@ -310,11 +310,11 @@ static int max30001_fetch_fifo(void)
uint32_t ecgFIFO, readECGSamples, ETAG[32], status;
int16_t ecgSample[32];
const int EINT_STATUS_MASK = 1 << 23;
const int FIFO_OVF_MASK = 0x7;
const int FIFO_VALID_SAMPLE_MASK = 0x0;
const int FIFO_FAST_SAMPLE_MASK = 0x1;
const int ETAG_BITS_MASK = 0x7;
const uint32_t EINT_STATUS_MASK = 1 << 23;
const uint32_t FIFO_OVF_MASK = 0x7;
const uint32_t FIFO_VALID_SAMPLE_MASK = 0x0;
const uint32_t FIFO_FAST_SAMPLE_MASK = 0x1;
const uint32_t ETAG_BITS_MASK = 0x7;
status = ecg_read_reg(STATUS); // Read the STATUS register
......
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