Uses of Class
java.lang.Object
-
-
Uses of Object in java.io
Subclasses of Object in java.io Modifier and Type Class Description class
InputStream
A readable source of bytes.class
IOError
This error is thrown when a severe I/O error has happened.class
IOException
Signals a general, I/O-related error.class
OutputStream
A writable sink for bytes.class
PrintStream
Wraps an existingOutputStream
and provides convenience methods for writing common data types in a human readable format. -
Uses of Object in java.lang
Subclasses of Object in java.lang Modifier and Type Class Description class
ArithmeticException
Thrown when the an invalid arithmetic operation is attempted.class
ArrayIndexOutOfBoundsException
Thrown when the an array is indexed with a value less than zero, or greater than or equal to the size of the array.class
ArrayStoreException
Thrown when a program attempts to store an element of an incompatible type in an array.class
Boolean
The wrapper for the primitive typeboolean
.class
BString
This is the base class for our optimized version of strings.class
Byte
The wrapper for the primitive typebyte
.class
Character
The wrapper for the primitive typechar
.class
Class<T>
The in-memory representation of a Java class.class
ClassCastException
Thrown when a program attempts to cast a an object to a type with which it is not compatible.class
ClassNotFoundException
Thrown when an application tries to load in a class through its string name using: TheforName
method in classClass
.class
Double
The wrapper for the primitive typedouble
.class
Enum<E extends Enum<E>>
The superclass of all enumerated types.class
Error
Error
is the superclass of all classes that represent unrecoverable errors.class
Exception
Exception
is the superclass of all classes that represent recoverable exceptions.class
Float
The wrapper for the primitive typefloat
.class
IllegalArgumentException
Thrown when a method is invoked with an argument which it can not reasonably deal with.class
IncompatibleClassChangeError
IncompatibleClassChangeError
is the superclass of all classes which represent errors that occur when inconsistent class files are loaded into the same running image.class
IndexOutOfBoundsException
Thrown when a program attempts to access a value in an indexable collection using a value which is outside of the range of valid indices.class
Integer
The wrapper for the primitive typeint
.class
LinkageError
LinkageError
is the superclass of all error classes that occur when loading and linking class files.class
Long
The wrapper for the primitive typelong
.class
Math
Class Math provides basic math constants and operations such as trigonometric functions, hyperbolic functions, exponential, logarithms, etc.class
NegativeArraySizeException
Thrown when an attempt is made to create an array with a size of less than zero.class
NoSuchFieldError
Thrown when the VM notices that a program tries to reference, on a class or object, a field that does not exist.class
NoSuchFieldException
Thrown when the VM notices that a program tries to reference, on a class or object, a field that does not exist.class
NoSuchMethodError
Thrown when the VM notices that a program tries to reference, on a class or object, a method that does not exist.class
NoSuchMethodException
Thrown when the VM notices that a program tries to reference, on a class or object, a method that does not exist.class
NullPointerException
Thrown when a program tries to access a field or method of an object or an element of an array when there is no instance or array to use, that is if the object or array points tonull
.class
Number
class
NumberFormatException
Thrown when an invalid value is passed to a string-to-number conversion method.class
ReflectiveOperationException
Superclass of exceptions related to reflection.class
RuntimeException
RuntimeException
is the superclass of all classes that represent exceptional conditions which occur as a result of executing an application in the VM.class
Short
The wrapper for the primitive typeshort
.class
String
An immutable sequence of characters/code units (char
s).class
System
Provides access to system-related information and resources including standard input and output.class
Throwable
The superclass of all classes which can be thrown by the VM.Methods in java.lang with parameters of type Object Modifier and Type Method Description static void
System. arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
copies length elements from the array source, beginning with the element at sourcePosition, to the array destination starting at destinationPosition.boolean
Boolean. equals(Object o)
Compares this instance with the specified object and indicates if they are equal.boolean
Byte. equals(Object object)
Compares this object with the specified object and indicates if they are equal.boolean
Character. equals(Object object)
Compares this object with the specified object and indicates if they are equal.boolean
Double. equals(Object object)
Tests this double for equality withobject
.boolean
Enum. equals(Object other)
Compares this object with the specified object and indicates if they are equal.boolean
Float. equals(Object object)
Tests this double for equality withobject
.boolean
Integer. equals(Object o)
Compares this instance with the specified object and indicates if they are equal.boolean
Long. equals(Object o)
Compares this instance with the specified object and indicates if they are equal.boolean
Object. equals(Object o)
Compares this instance with the specified object and indicates if they are equal.boolean
Short. equals(Object object)
Compares this instance with the specified object and indicates if they are equal.boolean
String. equals(Object anObject)
Compares the specified object to this string and returns true if they are equal. -
Uses of Object in java.lang.annotation
Methods in java.lang.annotation with parameters of type Object Modifier and Type Method Description boolean
Annotation. equals(Object obj)
Determines whether or not this annotation is equivalent to the annotation passed. -
Uses of Object in java.util
Subclasses of Object in java.util Modifier and Type Class Description class
ArrayList<E>
class
Random
This class provides methods that return pseudo-random values.Methods in java.util that return Object Modifier and Type Method Description Object[]
ArrayList. toArray()
Returns an array containing all of the elements in this list in proper sequence (from first to last element).<T> T[]
ArrayList. toArray(T[] arg0)
Object[]
Collection. toArray()
Returns a new array containing all elements contained in thisCollection
.<T> T[]
Collection. toArray(T[] array)
Returns an array containing all elements contained in thisCollection
.Object[]
List. toArray()
Returns an array containing all elements contained in thisList
.<T> T[]
List. toArray(T[] array)
Returns an array containing all elements contained in thisList
.Methods in java.util with parameters of type Object Modifier and Type Method Description boolean
ArrayList. contains(Object o)
Returnstrue
if this list contains the specified element.boolean
Collection. contains(Object object)
Tests whether thisCollection
contains the specified object.boolean
List. contains(Object object)
Tests whether thisList
contains the specified object.boolean
Collection. equals(Object object)
Compares the argument to the receiver, and returns true if they represent the same object using a class specific comparison.boolean
List. equals(Object object)
Compares the given object with theList
, and returns true if they represent the same object using a class specific comparison.int
ArrayList. indexOf(Object o)
Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.int
List. indexOf(Object object)
Searches thisList
for the specified object and returns the index of the first occurrence.(package private) int
ArrayList. indexOfRange(Object o, int start, int end)
int
ArrayList. lastIndexOf(Object o)
Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.int
List. lastIndexOf(Object object)
Searches thisList
for the specified object and returns the index of the last occurrence.(package private) int
ArrayList. lastIndexOfRange(Object o, int start, int end)
boolean
ArrayList. remove(Object o)
Removes the first occurrence of the specified element from this list, if it is present.boolean
Collection. remove(Object object)
Removes one instance of the specified object from thisCollection
if one is contained (optional).boolean
List. remove(Object object)
Removes the first occurrence of the specified object from thisList
.<T> T[]
ArrayList. toArray(T[] arg0)
<T> T[]
Collection. toArray(T[] array)
Returns an array containing all elements contained in thisCollection
.<T> T[]
List. toArray(T[] array)
Returns an array containing all elements contained in thisList
. -
Uses of Object in org.deepjava.flink.core
Subclasses of Object in org.deepjava.flink.core Modifier and Type Class Description class
FlinkDevice
A flink device is a hardware configuration in a FPGA device,class
FlinkSubDevice
A flink subdevice realizes a special function in aFlinkDevice
. -
Uses of Object in org.deepjava.flink.interfaces.mpc5200
Subclasses of Object in org.deepjava.flink.interfaces.mpc5200 Modifier and Type Class Description class
localPlusBusInterface
class
SPIBusInterface
-
Uses of Object in org.deepjava.flink.interfaces.zynq
Subclasses of Object in org.deepjava.flink.interfaces.zynq Modifier and Type Class Description class
AXIInterface
-
Uses of Object in org.deepjava.flink.subdevices
Subclasses of Object in org.deepjava.flink.subdevices Modifier and Type Class Description class
FlinkADC
The flink ADC subdevice realizes analog inputs in a flink device.class
FlinkCounter
The flink counter subdevice realizes counter function within a flink device.class
FlinkDAC
The flink DAC subdevice realizes analog outputs in a flink device.class
FlinkGPIO
The flink GPIO subdevice realizes digital input and output within a flink device.class
FlinkInfo
The flink info subdevice is used the deliver a description string for a flink device together with the total amount of used memory.class
FlinkPPWA
The flink PPWA subdevice realizes a PPWA function (pulse and period measurement) within a flink device.class
FlinkPWM
The flink PWM subdevice realizes a PWM (pulse with modulation) function within a flink device.class
FlinkUART
The flink UART subdevice realizes an UART function within a flink device.class
FlinkWatchdog
The flink watchdog subdevice realizes a watchdog function within a flink device. -
Uses of Object in org.deepjava.lowLevel
Subclasses of Object in org.deepjava.lowLevel Modifier and Type Class Description class
LL
The methods of this class will be translated by inserting machine code instructions directly in the code without a method call. -
Uses of Object in org.deepjava.runtime
Subclasses of Object in org.deepjava.runtime Modifier and Type Class Description class
Kernel
Mock kernel. -
Uses of Object in org.deepjava.runtime.arm32
Subclasses of Object in org.deepjava.runtime.arm32 Modifier and Type Class Description class
ARMException
The base class for all the ARM exceptions.class
DataAbort
The class for the ARM data abort exception.class
Heap
Heap manager with mark-sweep garbage collection.
As soon as the remaining heap space is lower than a third of the total available heap space, a garbage collection is called.class
PrefetchAbort
The class for the ARM prefetch abort exception.class
SupervisorCall
The class for the ARM supervisor call.class
Task
This class implements a simple non-preemptive tasking system.class
UndefinedInstruction
The class for the ARM undefined instruction exception. -
Uses of Object in org.deepjava.runtime.iMX6
Subclasses of Object in org.deepjava.runtime.iMX6 Modifier and Type Class Description class
Kernel
This is the kernel class.(package private) class
Reset
The class for the ARM reset exception. -
Uses of Object in org.deepjava.runtime.iMX6.driver
Subclasses of Object in org.deepjava.runtime.iMX6.driver Modifier and Type Class Description class
UART3
class
UARTOutputStream
Stream to write bytes to a UART interface. -
Uses of Object in org.deepjava.runtime.mpc5200
Subclasses of Object in org.deepjava.runtime.mpc5200 Modifier and Type Class Description class
Interrupt
The class for the PPC interrupt exception.
Every interrupt handler is an instance of the classInterrupt
.class
Kernel
This is the kernel class.class
PeripheralInterrupt
The class for the mpc5200 peripheral interrupt exception.
Every peripheral interrupt handler is an instance of the classPeripheralInterrupt
.(package private) class
ResetPCMio
The class for the PPC reset exception.
The stack pointer will be initialized and the program counter will be set to the beginning of the class initializer of the kernel.(package private) class
ResetPCMtiny
The class for the PPC reset exception.
The stack pointer will be initialized and the program counter will be set to the beginning of the class initializer of the kernel.(package private) class
ResetPCMuBoot
The class for the PPC reset exception.
The stack pointer will be initialized and the program counter will be set to the beginning of the class initializer of the kernel. -
Uses of Object in org.deepjava.runtime.mpc5200.demo
Subclasses of Object in org.deepjava.runtime.mpc5200.demo Modifier and Type Class Description class
CAN1Test
Test class for the CAN1 module on the mpc5200.
Demonstrates the periodic sampling of a 3-dimensional force sensor.class
DecrementerDemo
Simple demo application showing how to use theDecrementer
.
This application simply outputs the character 'x' over the UART3 for eachDecrementer
exception.class
EPOStest1
Test class for an EPOS module (motor controller) connected to the CAN1 bus on the mpc5200.
A motor position is moved forward and backward.class
ExceptionDemo
Test class which periodically throws aArrayIndexOutOfBoundsException
.class
SimpleBlinkerDemo
Simple blinker application demo.class
SPIDemo
Test class demonstrating the use of aMAX5500
DAC connected to a PSC on the mpc5200.
The PSC runs in SPI mode.class
UART3Demo
Demo for System.out using UART on PSC3.class
UART3InOutReflector
Demo for InputStream and OutputStream using UART3.
Received characters will be sent back immediately.class
UART6Demo
Demo for System.out using UART on PSC6. -
Uses of Object in org.deepjava.runtime.mpc5200.driver
Subclasses of Object in org.deepjava.runtime.mpc5200.driver Modifier and Type Class Description class
DAC_MAX5500
Driver for aMAX5500
DAC connected to a PSC6 on the mpc5200.class
SPI_FQD
class
UART3
Driver for the UART of the Freescale MPC5200.class
UART6
Driver for the UART of the Freescale MPC5200.class
UARTInputStream
Input Stream to read bytes from an UART interface.class
UARTOutputStream
Stream to write bytes to a UART interface. -
Uses of Object in org.deepjava.runtime.mpc5200.driver.can
Subclasses of Object in org.deepjava.runtime.mpc5200.driver.can Modifier and Type Class Description class
CAN1
class
CAN2
class
CANopen
class
EPOS
class
NodeData
-
Uses of Object in org.deepjava.runtime.mpc555
Subclasses of Object in org.deepjava.runtime.mpc555 Modifier and Type Class Description class
DateTime
Date and time class.class
Interrupt
The class for the PPC interrupt exception.class
Kernel
This is the kernel class.class
Logger
Logger utility to write log messages to aPrintStream
.(package private) class
Reset
The class for the PPC reset exception.class
Timer
A class to measure a time span. -
Uses of Object in org.deepjava.runtime.mpc555.demo
Subclasses of Object in org.deepjava.runtime.mpc555.demo Modifier and Type Class Description class
ActionableTest
This test class demonstrates the use of theActionable
interface.class
BlueRSCmdIntDemo
Simple application for demonstrating the usage of the BlueRSCmdInt driver with a Stollmann BlueRS+I module.class
BlueRSDemo
Demo Application for the BlueRS driver.class
DecrementerDemo
Simple demo application how to use theDecrementer
.class
ExtInterruptDemo
Demonstrates the usage of some external interruptsclass
HLC1395Demo
Demo application for the HLC1395Plused driver.class
MotorDemo1
Demo application for motor controller.class
Robi2LedBlinkerDemo
Wenn der Roboter autonom betrieben werden soll, d.h.class
Robi2LineDemo
Demo application for the NTB Robi2.class
Robi2LineTask
Demo application for the NTB Robi2.class
Robi2MotorDemo
Robi2 Motor Demo.class
Robi2ObstacleDemo
Demo application for the NTB Robi2.class
Robi2ObstacleTask
Demo application for the NTB Robi2.class
Robi2SensorProximityDemo
Das nachfolgende Programm wurde entwickelt um die auf dem Robotoer verwendeten Sensoren zu testen.class
Robi2SensorProximityDemo_Led
This class is part of the Robi2SensorProximityDemo.class
Robi2SensorProximityDemo_Out
This class is part of the Robi2SensorProximityDemo.class
SimpleBlinkerDemo
Simple blinker application demo.class
SystemInOutReflector
Demo for InputStream and OutputStream using SCI2.
Received characters will be sent back immediately.class
SystemOutDemo1
Demo for System.out using SCI1.class
SystemOutDemo2
Demo for System.out using SCI2.(package private) class
Test
class
VL53L0XTest
class
WifiDemo
-
Uses of Object in org.deepjava.runtime.mpc555.driver
Subclasses of Object in org.deepjava.runtime.mpc555.driver Modifier and Type Class Description class
BlueRS
Driver for the Stollmann BlueRS+I Bluetooth Module.
The module supports one emulated serial connection using the Bluetooth Serial Port Profile (SPP).class
BlueRSCmdInt
Interface for the BlueRS driver to send and receive positive integer values.class
DAC7614
Driver for the digital analog converter DAC7614.class
DS1302Z
Driver for the DS1302Z real time clock.
Pin 13, 14 and 15 of the TPUB are used.
Before the first write disable the write protection withDS1302Z.setWriteProtection(boolean)
.class
DS1620
Driver for the temperature sensor DS1620 connected to pins of the MPIOSM.class
HD44780U
Driver for character display with 2 - 4 rows and 16 columns.
Display controller: HD44780U
Connected on the system bus of the mpc555.class
HLC1395Pulsed
Driver for up to 16 pulsed and multiplexed HLC1393 reflection distance sensors.
The driver needs 5 digital outputs of the MPIOSM and a single analog input of QADC-A.class
MAX512
SPI Driver for the Maxim512 Digital to Analog Converter.
PCS0 on the SPI is used.class
MDASM_DIO
Driver to use the MDASM sub module as digital I/O.class
MMCSM_COUNT
Driver to use the Mios Modulus Counter to count external events.class
MPIOSM_DIO
Driver to use pins on the MPIOSM (MIOS 16-bit parallel port I/O submodule) as digital in- and outputs.class
MPWMSM_DIO
Driver to use the MPWM sub module as digital I/O.class
MPWMSM_PWM
Driver for the MPWM module for generating PWM signalsclass
QADC_AIN
This driver configures one of the QADC modules (QADC-A or QADC-B) for analog input sampling operation.
Both modules comprise of 16 input channels each.class
QADC_DIO
Driver to use the QADC-A or QADC-B as digital I/O.
Please prefer theMPIOSM_DIO
driver for I/O applications, because it's not possible to use the same channel on a QADC for ADC and I/0 at the same time.
The channels are grouped into two groups of 8 channels each, PortA and PortB.
PortB: PQB0(AN0), PQB1(AN1), PQB2(AN2), PQB3(AN3), PQB4(AN48), PQB5(AN49), PQB6(AN50), PQB7(AN51)
PortA: PQA0(AN52), PQA1(AN53), PQA2(AN54), PQA3(AN55), PQA4(AN56), PQA5(AN57), PQA6(AN58), PQA7(AN59)
IMPORTANT: The pins on PortB work solely as digital inputs.class
QSMCM
Definitions for QSMCMclass
QSMCM_DIO
Digital I/O on the PortQS.
Important: This drivers uses the same pins as the QSPI.
The following pins can be used.class
QSPI
class
RN131
Driver for Roving RN-131C WiFly Module.class
Robi2
This driver is used for the Robi2.class
RTBoard
Driver for the mpc555 board for control applications.class
SCI
Interrupt controlled driver for the Serial Communication Interface 1 or the Serial Communication Interface 2 of the Freescale MPC555.class
SCI18IS600
class
SCIInputStream
Input Stream to read bytes from a SCI interface.class
SCIOutputStream
Stream to write bytes to a SCI interface.class
StepMotor
Step motor driver on TPU-A or TPU-B.
Full step and half step modes are possible.
Full step requires 2 pins on the TPU.class
TLC549
Driver for a TLC549 8bit AD-converter connected to the QSPI.
Connect the converter as follows:
MPC555 => TLC549:
PCS0 => CS
MISO => DATA OUT
SCK => I/O CLOCK
Do not connect any other devices on the QSPI interface without adapting the settings of the control lines.class
TPU_DIO
Driver to use a channel of the TPU (A or B) as a GPIO.
Each 16 channels of both time processing units can be used as general purpose in- or output.class
TPU_FQD
Decoding of quadrature coded signals (FQD - Fast Quadrature Decoding) with TPU-A or TPU-B.class
TPU_PPWA
Period and pulse width measurement (PPWA function) with the TPU-A or TPU-B.
All 16 channels of TPU-A or TPU-B can be used.class
TPU_PWM
Driver for generating pulse width modulated (PWM) signals on the TPU.
All 16 channels of TPU-A or TPU-B can be used.class
TPUA
Driver for the TPU B.class
TPUB
Driver for the TPU B.class
VL53L0X
-
Uses of Object in org.deepjava.runtime.mpc555.driver.can
Subclasses of Object in org.deepjava.runtime.mpc555.driver.can Modifier and Type Class Description class
CANA
class
CANopen
class
EPOS
-
Uses of Object in org.deepjava.runtime.mpc555.driver.ffs
Subclasses of Object in org.deepjava.runtime.mpc555.driver.ffs Modifier and Type Class Description class
AM29LV160
Driver for AM29LV160 Flash, 2MB Utilities for reading from and writing to flash AM29LV160.class
FFS
Flash File System
Works if code runs out of RAM or flash Sets aside part of the onboard flash for a file systemclass
File
File, which can be used by the flash file system (FFS)class
FileTransfer
files can be manually uploaded over SCI2, uses interrupt driven SCI driverclass
Rider
Rider, to be placed onto a file
multiple riders might be placed for reading and writing -
Uses of Object in org.deepjava.runtime.mpc555.sysp
Subclasses of Object in org.deepjava.runtime.mpc555.sysp Modifier and Type Class Description class
SpeedController4DCMotor
Speed controller (PI control) for DC motor. -
Uses of Object in org.deepjava.runtime.ppc32
Subclasses of Object in org.deepjava.runtime.ppc32 Modifier and Type Class Description class
Decrementer
The class for the PPC decrementer exception.class
FloatingPointUnavailable
The class for the PPC floating point unavailable exception.class
Heap
Heap manager with mark-sweep garbage collection.
As soon as the remaining heap space is lower than a third of the total available heap space, a garbage collection is called.class
MachineCheck
The class for the PPC machine check exception.class
PPCException
The base class for all the PPC exceptions.class
ProgramExc
The class for the PPC program exception.class
SystemCall
The class for the PPC system call exception.class
Task
This class implements a simple non-preemptive tasking system. -
Uses of Object in org.deepjava.runtime.util
Subclasses of Object in org.deepjava.runtime.util Modifier and Type Class Description class
ByteArrayFifo
First in first outbyte
array queue.class
ByteFifo
First in first outbyte
queue.class
ByteLiFo
Non thread-save last in first outbyte
queue.class
DummyInputStream
A readable source of bytes.class
DummyOutputStream
A writable sink for bytes.class
IntFifo
First in first outInteger
queue.class
IntPacket
Interface for the RN131 driver to send and receive integer values.class
Matrix
This class implements matrices and their operations.class
SLIP
Interface for the RN131 driver to send and receive packets with the SLIP protocol.class
Vector
This class implements a n-dimensional vector.class
Vector3
This class implements a 3-dimensional vector.class
Vector4
This class implements a 4-dimensional vector. -
Uses of Object in org.deepjava.runtime.zynq7000
Subclasses of Object in org.deepjava.runtime.zynq7000 Modifier and Type Class Description class
Decrementer
The class for the ARM private timer.class
IrqInterrupt
The class for the ARM irq interrupt.(package private) class
Reset
The class for the ARM reset exception. -
Uses of Object in org.deepjava.runtime.zynq7000.demo
Subclasses of Object in org.deepjava.runtime.zynq7000.demo Modifier and Type Class Description class
DecrementerDemo
Simple demo application how to use theDecrementer
.class
MotorDemo
Demo application for motor controller in sign magnitude mode.class
SystemInOutReflector
Demo for InputStream and OutputStream using UART1.
Received characters will be sent back immediately.class
SystemOutDemo
Demo for System.out using UART1.class
TCRT1000Demo
Demo application for the TCRT1000 driver.class
VL53L0XDemo
Demo application for the VL53L0X driver.class
WatchdogDemo
class
WifiDemo
-
Uses of Object in org.deepjava.runtime.zynq7000.driver
Subclasses of Object in org.deepjava.runtime.zynq7000.driver Modifier and Type Class Description class
FlinkUARTInputStream
Input Stream to read bytes from a UART interface.class
FlinkUARTOutputStream
Stream to write bytes to a UART interface.class
HD44780U
Driver for character display with 2 - 4 rows and 16 columns.
Display controller: HD44780U
Connected to flink gpios of the Zynq7000.class
RN131
Driver for Roving RN-131C WiFly Module.class
TCRT1000
Driver for up to 16 pulsed and multiplexed TCRT1000 or HLC1393 reflection distance sensors.
The driver needs 5 digital outputs and a single analog input of an AD7476.class
UART
Interrupt controlled driver for the UART0 or the UART1 of the Zynq7000.class
UARTInputStream
Input Stream to read bytes from a UART interface.class
UARTOutputStream
Stream to write bytes to a UART interface.class
VL53L0X
Interrupt controlled driver for the VL53L0X TOF Sensor with the SPI1 of the Zynq7000.class
WatchdogTask
Task which periodically resets a flink watchdog subdevice, @see org.deepjava.flink.subdevices.FlinkWatchdog.class
XADC
Driver for the internal analog to digital converter XADC. -
Uses of Object in org.deepjava.runtime.zynq7000.microzed
Subclasses of Object in org.deepjava.runtime.zynq7000.microzed Modifier and Type Class Description class
Kernel
This is the kernel class. -
Uses of Object in org.deepjava.runtime.zynq7000.microzed.demo
Subclasses of Object in org.deepjava.runtime.zynq7000.microzed.demo Modifier and Type Class Description class
Blinker
class
FlinkDemo
-
Uses of Object in org.deepjava.runtime.zynq7000.microzed.driver
Subclasses of Object in org.deepjava.runtime.zynq7000.microzed.driver Modifier and Type Class Description class
MIO_DIO
Driver to use the MIO pins on the MicroZed board as digital input or outputs.
The driver supports digital functions on MIO0, MIO9 ..class
RTBoard
Driver for the Microzed board for control applications. -
Uses of Object in org.deepjava.runtime.zynq7000.sysp
Subclasses of Object in org.deepjava.runtime.zynq7000.sysp Modifier and Type Class Description class
SpeedController4DCMotor
Speed controller (PI control) for DC motor. -
Uses of Object in org.deepjava.runtime.zynq7000.zybo
Subclasses of Object in org.deepjava.runtime.zynq7000.zybo Modifier and Type Class Description class
Kernel
This is the kernel class. -
Uses of Object in org.deepjava.runtime.zynq7000.zybo.demo
Subclasses of Object in org.deepjava.runtime.zynq7000.zybo.demo Modifier and Type Class Description class
Blinker
class
FlinkDemo
-
Uses of Object in org.deepjava.unsafe
Subclasses of Object in org.deepjava.unsafe Modifier and Type Class Description class
US
Methods in org.deepjava.unsafe with parameters of type Object Modifier and Type Method Description static int
US. REF(Object ref)
Returns object reference as address -
Uses of Object in org.deepjava.unsafe.arm
Subclasses of Object in org.deepjava.unsafe.arm Modifier and Type Class Description class
US
This class allows for accessing absolute memory locations and machine registers on a ARM processor. -
Uses of Object in org.deepjava.unsafe.ppc
Subclasses of Object in org.deepjava.unsafe.ppc Modifier and Type Class Description class
US
This class allows for accessing absolute memory locations and machine registers on a PowerPC processor.
-