com.pi4j.io.serial.BananaPiSerial Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pi4j-core Show documentation
Show all versions of pi4j-core Show documentation
Pi4J Java Library for the Raspberry Pi
The newest version!
package com.pi4j.io.serial;
/*
* #%L
* **********************************************************************
ORGANIZATION : Pi4J
PROJECT : Pi4J :: Java Library (Core)
FILENAME : BananaPiSerial.java
This file is part of the Pi4J project. More information about
this project can be found here: http://www.pi4j.com/
**********************************************************************
* %%
* Copyright (C) 2012 - 2018 Pi4J
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
/**
* This class simply exposed the available UART/serial port
* address (device file paths) that are exposed on the BananaPi.
*/
public class BananaPiSerial {
// (UART0)
// this com port is exposed on the J11 header and is typically
// configured for terminal access to the operating system
// - TX is located at J11-01
// - RX is located at J11-02
public static final String UART0_COM_PORT = "/dev/ttyS0";
public static final String J11_COM_PORT = UART0_COM_PORT;
// (UART2)
// this com port is exposed on the J12 header
// - TX is located at CON3-13
// - RX is located at CON3-11
public static final String UART2_COM_PORT = "/dev/ttyS1";
// (UART3)
// this is the default com port exposed on the CON3 header
// - TX is located at CON3-08
// - RX is located at CON3-10
public static final String UART3_COM_PORT = "/dev/ttyS2";
public static final String DEFAULT_COM_PORT = UART3_COM_PORT;
// (UART7)
// this com port is exposed on the J12 header
// - TX is located at J12-06
// - RX is located at J12-04
public static final String UART7_COM_PORT = "/dev/ttyS3";
public static final String J12_COM_PORT = UART7_COM_PORT;
}