Difference between revisions of "DESK-XZ7-L/Peripherals/UART"

From DAVE Developer's Wiki
Jump to: navigation, search
Line 6: Line 6:
 
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|Notes
 
!style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#73B2C7; padding:5px; color:white"|Notes
 
|-
 
|-
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#ededed; padding:5px; color:#000000"|2023/01/23
+
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|2023/01/23
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#ededed; padding:5px; color:#000000"|DESK-XZ7-L-1.0.1 release
+
|style="border-left:solid 2px #73B2C7; border-right:solid 2px #73B2C7;border-top:solid 2px #73B2C7; border-bottom:solid 2px #73B2C7; background-color:#edf8fb; padding:5px; color:#000000"|DESK-XZ7-L-1.0.1 release
 
|-
 
|-
 
|}
 
|}
Line 13: Line 13:
 
<section begin=Body/>
 
<section begin=Body/>
  
== UART0 ==
+
== Peripheral UART ==
  
UART0 is a spare UART device available on the JP17 PMOD connector. This device is routed through the PL.
+
The Zynq-7000 second UART device (UART0) is routed through the PL and it is mapped to the <code>ttyPS1</code> device.
  
{| class="wikitable"
+
===Accessing the peripheral ===
|-
+
 
! Physical device !! Processor's resource !! Connector !! Type !! Linux device file !! Notes
+
====Linux messages at boot time====
|-
+
 
| UART0 || UART0 || JP17 || 2-wire LVTTL UART || <code>/dev/ttyPS1</code> ||
+
<pre class="workstation-terminal">
|-
+
</pre>
|}
+
 
 +
==== Usage with stty ====
 +
 
 +
<pre class="workstation-terminal">
 +
</pre>
 +
 
 +
=== Additional information ===
 +
Serial ports can be used through the standard serial programming API.
 +
 
 +
For detailed information, please refer to the Serial Programming HOWTO at [http://tldp.org/HOWTO/Serial-Programming-HOWTO/index.html Serial-Programming-HOWTO]
  
 
<section end=Body/>
 
<section end=Body/>
 
----
 
  
 
[[Category:BORA]]
 
[[Category:BORA]]

Revision as of 08:30, 26 January 2024

History
Issue Date Notes
2023/01/23 DESK-XZ7-L-1.0.1 release


Peripheral UART[edit | edit source]

The Zynq-7000 second UART device (UART0) is routed through the PL and it is mapped to the ttyPS1 device.

Accessing the peripheral[edit | edit source]

Linux messages at boot time[edit | edit source]


Usage with stty[edit | edit source]


Additional information[edit | edit source]

Serial ports can be used through the standard serial programming API.

For detailed information, please refer to the Serial Programming HOWTO at Serial-Programming-HOWTO