Main bbbandroidHAL header file. More...
#include <stdio.h>
Go to the source code of this file.
Functions | |
int | openBBBAndroidHAL (void) |
int | closeBBBAndroidHAL (void) |
int | openGPIO (const int useMmap) |
int | readGPIO (const unsigned int header, const unsigned int pin) |
int | writeGPIO (const unsigned int header, const unsigned int pin, const unsigned int value) |
void | closeGPIO (void) |
int | pwmSetPeriod (const uint8_t channel, const uint32_t period_ns) |
int | pwmGetPeriod (const uint8_t channel) |
int | pwmSetDutyCycle (const uint8_t channel, const uint32_t duration_ns) |
int | pwmGetDutyCycle (const uint8_t channel) |
int | pwmSetPolarity (const uint8_t channel, const uint8_t polarity) |
int | pwmGetPolarity (const uint8_t channel) |
int | pwmRun (const uint8_t channel) |
int | pwmStop (const uint8_t channel) |
int | pwmRunCheck (const uint8_t channel) |
int | readADC (const uint8_t channel) |
int | i2cOpenAdaptor (const uint8_t adaptorNumber) |
int | i2cSetSlave (const int i2cFD, const uint8_t address) |
void | i2cClose (const int i2cFD) |
int | i2cSetAddress (const int i2cFD, const uint8_t add) |
int | i2cWriteByte (const int i2cFD, const uint8_t add, const uint8_t byte) |
int | i2cWriteBytes (const int i2cFD, const uint8_t add, const int length, const uint8_t *bytes) |
int | i2cReadByte (const int i2cFD, const uint8_t add) |
int | i2cReadBytes (const int i2cFD, const uint8_t add, const int length, uint8_t *buff) |
int | spiTransfer (const int spiFD, const uint8_t tx[], const uint8_t rx[], const int len) |
int | spiOpen (const uint8_t bus, const uint8_t device, const uint32_t speed, const uint8_t mode, const uint8_t bpw) |
int | spiReadByte (const int spiFD, const uint8_t regAdd) |
unsigned char * | spiReadBytes (const int spiFD, const int len, const uint8_t startAdd) |
int | spiWriteRegByte (const int spiFD, const uint8_t regAdd, const uint8_t data) |
int | spiWriteBytes (const int spiFD, const uint8_t data[], const int len) |
int | spiSetMode (const int spiFD, const uint8_t mode) |
int | spiSetSpeed (const int spiFD, const uint32_t speed) |
int | spiSetBitsPerWord (const int spiFD, const uint8_t bpw) |
void | spiClose (const int spiFD) |
int | canOpenSocket (const int socket_type, const int protocol) |
int | canOpenRaw (const char *port) |
unsigned char * | canReadBytes (const int fd, int *length) |
int | canSendBytes (const int canFD, const int no_bytes, const uint8_t data[]) |
void | canClose (const int canFD) |
int | uartOpen (const uint8_t device, const uint32_t bdrate) |
int | uartWrite (const int uartFD, const int length, const uint8_t *bytes) |
int | uartRead (const int uartFD, const int length, uint8_t *bytes) |
void | uartClose (const int uartFD) |
ssize_t | usbInit () |
void | usbClose () |
int | usbGetDevices (int ids[][8], unsigned char strings[][3][256]) |
Main bbbandroidHAL header file.
void canClose | ( | const int | canFD | ) |
This function is used to close CAN file descriptor.
canFD | a constant integer argument. |
int canOpenRaw | ( | const char * | port | ) |
This function takes port string as input and opens socket using canOpenSocket(), locates interface using ioctl() system call then binds the socket with CAN interface and returns the file descriptor.
port | a constant character pointer argument. |
int canOpenSocket | ( | const int | socket_type, |
const int | protocol | ||
) |
This function takes socket_type and protocol as input and opens socket of that type and protocol and then returns file descriptor.
socket_type | a constant integer argument. |
protocol | a constant integer argument. |
unsigned char* canReadBytes | ( | const int | fd, |
int * | length | ||
) |
This functions takes file descriptor and length of data to be read as input and returns the pointer to the array of data bytes read. If no data is read then NULL pointer is returned.
fd | a constant integer argument. |
length | a integer pointer argument. |
int canSendBytes | ( | const int | canFD, |
const int | no_bytes, | ||
const uint8_t | data[] | ||
) |
This function takes can file descriptor, number of bytes and array of data to be transferred as input and writes given number of bytes of data from data buffer.
canFD | a constant integer argument. |
no_bytes | a constant unsigned integer argument. |
data | array of constant uint8_t argument. |
void closeGPIO | ( | void | ) |
For closing file descriptor if accessed using file system and set initialized to 0.
void i2cClose | ( | const int | i2cFD | ) |
This function is used to close I2C file descriptor.
i2cFD | a constant integer argument. |
int i2cOpenAdaptor | ( | const uint8_t | adaptorNumber | ) |
This function takes I2C adapter number as input and returns a file descriptor for accessing that I2C adapter.
adaptorNumber | a constant uint8_t argument. |
int i2cReadByte | ( | const int | i2cFD, |
const uint8_t | add | ||
) |
It takes file descriptor and address of register from which data is to be read. It reads a byte from the address provided in input and returns the byte. It internally uses i2cSetAddress() to set pointer to proper address.
i2cFD | a constant integer argument. |
add | a constant uint8_t argument. |
int i2cReadBytes | ( | const int | i2cFD, |
const uint8_t | add, | ||
const int | length, | ||
uint8_t * | buff | ||
) |
It takes file descriptor, starting address of register from which data is to be read, length of data to be read and buffer to store the data as input. It is used to get 'length' number of bytes in 'buff' array from 'add' starting address.
i2cFD | a constant integer argument. |
add | a constant uint8_t argument. |
length | a constant integer argument. |
bytes | an uint8_t pointer argument. |
int i2cSetAddress | ( | const int | i2cFD, |
const uint8_t | add | ||
) |
This is used by some other functions internally for random access of sensor registers. It takes file descriptor and random address as input to which file descriptor should point.
i2cFD | a constant integer argument. |
add | a constant uint8_t argument. |
int i2cSetSlave | ( | const int | i2cFD, |
const uint8_t | address | ||
) |
This takes I2C adapter file descriptor and address at which device is attached as input and sets slave for file descriptor using ioctl call.
i2cFD | a constant integer argument. |
address | a constant uint8_t argument. |
int i2cWriteByte | ( | const int | i2cFD, |
const uint8_t | add, | ||
const uint8_t | byte | ||
) |
This function takes file descriptor, address of register to write and byte to be written as input and writes byte provided in the argument at the address provided.
i2cFD | a constant integer argument. |
add | a constant uint8_t argument. |
byte | a constant uint8_t argument. |
int i2cWriteBytes | ( | const int | i2cFD, |
const uint8_t | add, | ||
const int | length, | ||
const uint8_t * | bytes | ||
) |
It takes i2c file descriptor, start address of registers to be written, length of data and array containing bytes of data as input. This function is used to write bytes provided in argument from the address provided to address+length continuously.
i2cFD | a constant integer argument. |
add | a constant uint8_t argument. |
length | a constant integer argument. |
bytes | a constant uint8_t pointer argument. |
int openGPIO | ( | const int | useMmap | ) |
This function takes parameter input useMmap to take choice if you want to use Memory Map to access GPIO or to access it using file system. If using memory map then a proper file descriptor is set.
useMmap | a constant integer argument. |
int pwmGetDutyCycle | ( | const uint8_t | channel | ) |
It takes channel number as input and returns the value of duty cycle of specified channel in nano seconds.
channel | a constant uint8_t argument. |
int pwmGetPeriod | ( | const uint8_t | channel | ) |
It takes channel number as input and returns the value of period of specified channel in nano seconds.
channel | a constant uint8_t argument. |
int pwmGetPolarity | ( | const uint8_t | channel | ) |
It takes channel number as input and returns the value of polarity of specified channel.
channel | a constant uint8_t argument. |
int pwmRun | ( | const uint8_t | channel | ) |
It takes channel number as input and sets run for that channel so that pwm starts running for that channel.
channel | a constant uint8_t argument. |
int pwmRunCheck | ( | const uint8_t | channel | ) |
It takes channel number as input and returns the value of run for that channel.
channel | a constant uint8_t argument. |
int pwmSetDutyCycle | ( | const uint8_t | channel, |
const uint32_t | duration_ns | ||
) |
It takes channel and duty cycle to be assigned in nano seconds and sets duty cycle of that channel to specified value using file system.
channel | a constant uint8_t argument. |
duration_ns | a constant uint32_t argument. |
int pwmSetPeriod | ( | const uint8_t | channel, |
const uint32_t | period_ns | ||
) |
It takes channel and period to be assigned in nano seconds and sets period of that channel to specified value using file system.
channel | a constant uint8_t argument. |
period_ns | a constant uint32_t argument. |
int pwmSetPolarity | ( | const uint8_t | channel, |
const uint8_t | polarity | ||
) |
It takes channel and polarity to be assigned and sets polarity of that channel to the specified value using file system.
channel | a constant uint8_t argument. |
polarity | a constant uint8_t argument. |
int pwmStop | ( | const uint8_t | channel | ) |
It takes channel number as input and sets run to 0 for that channel so that pwm stops for that channel.
channel | a constant uint8_t argument. |
int readADC | ( | const uint8_t | channel | ) |
It takes ADC channel number as the input and reads its value using file system access and then returns its value.
channel | a constant uint8_t argument. |
int readGPIO | ( | const unsigned int | header, |
const unsigned int | pin | ||
) |
It takes input GPIO header and pin and reads its value after opening its file. If Memory Map is used then proper bit value is read using the file descriptor initialized in openGPIO() function call. Proper bit positions for all the GPIOs are present in GPIOBit_t arrays of each P8 and P9 header.
header | a constant unsigned int argument. |
pin | a constant unsigned int argument. |
void spiClose | ( | const int | spiFD | ) |
This function is used to close SPI file descriptor.
spiFD | a constant integer argument. |
int spiOpen | ( | const uint8_t | bus, |
const uint8_t | device, | ||
const uint32_t | speed, | ||
const uint8_t | mode, | ||
const uint8_t | bpw | ||
) |
This function takes input bus number, device number, speed of device, mode of device and bits per word for the device and internally opens the file and sets speed mode and bits per word for the device using spiSetMode(), spiSetSpeed() and spiSetBitsPerWord() and then returns the file descriptor.
bus | a constant unsigned integer argument. |
device | a constant uint8_t argument. |
speed | a constant uint32_t argument. |
mode | a constant uuint8_t argument. |
bpw | a constant uuint8_t argument. |
int spiReadByte | ( | const int | spiFD, |
const uint8_t | regAdd | ||
) |
It takes spi file descriptor and register address as input and returns the value present at that address.
spiFD | a constant integer argument. |
regAdd | a constant uint8_t argument. |
unsigned char* spiReadBytes | ( | const int | spiFD, |
const int | len, | ||
const uint8_t | startAdd | ||
) |
It takes file descriptor, length of data to be read and starting address of register from which data is to be read and returns a pointer to the array of data bytes read. It is used to get 'length' number of bytes in array from 'startAdd' starting address.
spiFD | a constant integer argument. |
len | a constant integer argument. |
startAdd | a constant uint8_t argument. |
int spiSetBitsPerWord | ( | const int | spiFD, |
const uint8_t | bpw | ||
) |
It takes file descriptor and 'bpw' bits per word as input and sets the bpw provided in the argument to the device represented by file descriptor.
spiFD | a constant integer argument. |
bpw | a constant uint8_t argument. |
int spiSetMode | ( | const int | spiFD, |
const uint8_t | mode | ||
) |
It takes file descriptor and mode as input and sets the mode provided in the argument to the device represented by file descriptor.
spiFD | a constant integer argument. |
mode | a constant uint8_t argument. |
int spiSetSpeed | ( | const int | spiFD, |
const uint32_t | speed | ||
) |
It takes file descriptor and speed as input and sets the speed provided in the argument to the device represented by file descriptor.
spiFD | a constant integer argument. |
speed | a constant uint32_t argument. |
int spiTransfer | ( | const int | spiFD, |
const uint8_t | tx[], | ||
const uint8_t | rx[], | ||
const int | len | ||
) |
This function takes input SPI file descriptor, tx buffer array to transmit data, rx buffer array to receive data and length of data to be transferred. It then transfers and receives data using ioctl function call.
spiFD | a constant integer argument. |
tx | a constant uint8_t array argument. |
rx | a constant uint8_t array argument. |
len | a constant integer argument. |
int spiWriteBytes | ( | const int | spiFD, |
const uint8_t | data[], | ||
const int | len | ||
) |
It takes spi file descriptor , array of data to be written and length of data to be written as input. It writes length number of data bytes from the data buffer provided.
spiFD | a constant integer argument. |
data | a constant uint8_t argument argument. |
len | a constant integer argument. |
int spiWriteRegByte | ( | const int | spiFD, |
const uint8_t | regAdd, | ||
const uint8_t | data | ||
) |
This function takes file descriptor, address of register to write and byte to be written as input and writes byte provided in the argument at the address provided.
spiFD | a constant integer argument. |
regAdd | a constant uint8_t argument. |
data | a constant uint8_t argument. |
void uartClose | ( | const int | uartFD | ) |
This function is used to close UART file descriptor.
uartFD | a constant integer argument. |
int uartOpen | ( | const uint8_t | device, |
const uint32_t | bdrate | ||
) |
This takes device number and baud rate as input and opens uart deivce with specified baud rate and returns the file descriptor. It internally uses baudrate() to get proper value using macro.
device | a constant uint8_t argument. |
bdrate | a constant uint8_t argument. |
int uartRead | ( | const int | uartFD, |
const int | length, | ||
uint8_t * | bytes | ||
) |
This functions takes file descriptor, length of data bytes to be received and pointer to array to store the bytes received as input and reads data from UART using read system call.
uartFD | a constant integer argument. |
length | a constant integer argument. |
bytes | a constant uint8_t pointer argument. |
int uartWrite | ( | const int | uartFD, |
const int | length, | ||
const uint8_t * | bytes | ||
) |
This function takes file descriptor, length of data bytes to be transferred and pointer to the array of bytes to be transferred as input and sends it using write system call.
uartFD | a constant integer argument. |
length | a constant integer argument. |
bytes | a constant uint8_t pointer argument. |
void usbClose | ( | ) |
This function is used to close USB devices.
int usbGetDevices | ( | int | ids[][8], |
unsigned char | strings[][3][256] | ||
) |
This function takes one 2D array to store IDs (bus, device, manufacturer and vendor) for each USB device and one 3D array to store path, manufacturer descriptor and vendor descriptor. It returns 0 if successful and -1 if it fails. It is only to demonstrate and develop lsusb kind of app. Similar functions can be made using libusb for other functionalities of USB.
ids | 2D integer array argument. |
strings | 3D unsigned character argument. |
ssize_t usbInit | ( | ) |
It creates USB session and gets number of USB devices attached and then returns number of USB devices attached.
int writeGPIO | ( | const unsigned int | header, |
const unsigned int | pin, | ||
const unsigned int | value | ||
) |
It takes input GPIO header, pin and value that is required to be set on GPIO after opening corresponding GPIO file. If Memory Map is used then proper bit value is set using the file descriptor initialized in openGPIO() function call. Proper bit positions for all the GPIOs are present in GPIOBit_t arrays of each P8 and P9 header.
header | a constant unsigned int argument. |
pin | a constant unsigned int argument. |