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.

LP-MSPM0L1306:Input pin high-low detection method

Part Number: LP-MSPM0L1306
Other Parts Discussed in Thread: SYSCONFIG

You can check the high level of the input pin using DL_GPIO_readPins(GPIO_Regs* gpio, uint32_t pins),
What should I do when I want to check Low?
Also, with MPS430,
if ((P4IN & BIT0) == 1)~
I was able to express P4.0 as P4IN & BIT0 like this.
In MSPM0
For example, how can PA10 be expressed?