Advertisement
Guest User

Untitled

a guest
Dec 18th, 2023
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. ...
  2. uart0: serial@401c8000 {
  3. compatible = "nxp,s32cc-linflexuart", "fsl,s32v234-linflexuart";
  4. reg = <0x0 0x401c8000 0x0 0x3000>;
  5. interrupts = <0 82 1>;
  6. clocks = <&clks ((14) + 0U)>,
  7. <&clks ((13) + 0U)>;
  8. clock-names = "lin", "ipg";
  9. };
  10. ....
  11.  
  12. uart0_pins: uart0 {
  13. uart0_grp0 {
  14. pinmux = <(((41) << 4) | (1))>;
  15. output-enable;
  16. slew-rate = <6>;
  17. };
  18. uart0_grp1 {
  19. pinmux = <(((42) << 4) | (0))>;
  20. input-enable;
  21. slew-rate = <6>;
  22. };
  23. uart0_pins_grp2 {
  24. pinmux = <(((512) << 4) | (2))>;
  25. };
  26. };
  27. };
  28. &uart0 { <<< This is the line that throws a syntax error
  29. pinctrl-0 = <&uart0_pins>;
  30. pinctrl-names = "default";
  31. status = "okay";
  32. };
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement