This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello,
I am using the MSP432E401Y (currently via the MSP-EXP432E401Y LaunchPad). I am branching my code off of the existing example "i2ctmp007_MSP_EXXP432401Y_nortos_ccs" only with different booster packs. For my application I need to set a specific bit rate for the I2C that is not part of the enumerated types. I realize that to do this I need to use DriverLib calls, but I can't seem to get the DriverLib added to my existing project. I have downloaded other example projects that use DriverLib, and those worked fine.
One remark.
i2ctmp007.c has a bug.
The declaration:
uint16_t temperature;
and then:
/* * If the MSB is set '1', then we have a 2's complement * negative value which needs to be sign extended */ if (rxBuffer[0] & 0x80) { temperature |= 0xF000; } /* * For simplicity, divide the temperature value by 32 to get rid of * the decimal precision; see TI's TMP007 datasheet */ temperature /= 32; Display_printf(display, 0, 0, "Sample %u: %d (C)\n", i, temperature);
In case of negative value the '-' sign added and then shift to right by 5 bits.
It is rubbish.
It should be signed variable and casted to (int) as an argument for Display_printf().
I have the same issue, no time to reread before the Post button hit.
Still I do not know errors you see and conditions under which you obtain them.
Guessing and assumptions are not the ways I prefer.
**Attention** This is a public forum