Hello all,
I am trying to implement the Timeout counter from the LPUART module of an S32K344 microcontroller, but I have encountered some issues.
I want to use them to monitor idle bits elapsed from the last received message so, my first question is, do they have the ability of generating a hardware interrupt?
Looking at the table of LPUART registers as per the S32K3XX Reference Manual (section 77.6.1), the registers that I should modify to configure the timeout counters are TOCR, TOSR and TIMEOUTN.
The first thing that I noticed is that these registers are not in the LPUART register layout typedef in the SDK (in the S32K344_LPUART.h)
Therefore, I have tried to access these registers manually, taking the IP_LPUART_0_BASE address from the SDK and adding the corresponding offset (0x58 in this case). When trying to read/write this region, I get a Hard Fault. I have tried to read other LPUART registers from the ones in the image above with this method to ensure that the method itself is not the problem, and it worked just fine.
Right now I am supposing that this memory region is somehow protected, but I could not find many info on this in the Reference Manual, so my question is: Is this the case? Is this memory region protected? and, if so, is there any way that I can access it to configure the timeout counters?
Thank you in advance!
已解决! 转到解答。
Hello @Senlent,
I am using the LpuartFlexio_Uart_Ip_Example_S32K344 from the NXP repository.
The only changes that I have made are in the main.c file (that I am attaching to this reply) to implement the timeout counter (changing the LPUART instance from 3 to 0) and to remove the Flexio UART instance.
Thank you!
Hello @Senlent ,
sure, I am attaching the complete project.
I am using the S32DS for ARM Version 3.4, and the RTS version that I am using is the 2.0.0 for the S32K3xx.
Hi@xianalbela
I checked your code and there is nothing wrong with your syntax.
However, the register address you used is not defined.
The registers that users can use and access are only in "S32K344_LPUART.h".
Hello @Senlent,
yes, I am aware that this register is not defined in the "S32K344_LPUART.h" file, but I wanted to know if there is any other way to use the LPUART Timeout counter feature since it is described in the reference manual.
Maybe there is some mode that needs to be activated before trying to access those registers.
Is it possible to use this feature in any way?
Best regards.
