ChibiOS/testex/ADUCM/SPI-ADXL355/main.c

152 lines
4.7 KiB
C

/*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "ch.h"
#include "hal.h"
#include "chprintf.h"
#include "adxl355.h"
#define LINE_SPI1_MOSI PAL_LINE(GP0, 2U)
#define LINE_SPI1_MISO PAL_LINE(GP0, 0U)
#define LINE_SPI1_SCK PAL_LINE(GP0, 1U)
#define LINE_SPI1_CS PAL_LINE(GP0, 3U)
#define cls(chp) chprintf(chp, "\033[2J\033[1;1H")
/*===========================================================================*/
/* ADXL355 related. */
/*===========================================================================*/
/*
* SPI TX and RX buffers.
*/
static uint8_t txbuf[32];
static uint8_t rxbuf[32];
/* ADXL355 Driver: This object represent an ADXL355 instance */
static ADXL355Driver ADXL355D1;
static int32_t accraw[ADXL355_ACC_NUMBER_OF_AXES];
static float acccooked[ADXL355_ACC_NUMBER_OF_AXES];
static char axisID[ADXL355_ACC_NUMBER_OF_AXES] = {'X', 'Y', 'Z'};
static uint32_t i;
static const SPIConfig spicfg = {
NULL,
LINE_SPI1_CS,
0,
ADUCM_SPI_DIV_2
};
static ADXL355Config adxl355cfg = {
&SPID1,
&spicfg,
NULL,
NULL,
ADXL355_ACC_FS_2G,
ADXL355_ACC_ODR_125HZ,
#if ADXL355_USE_ADVANCED
ADXL355_ACC_HP_LEV_3
#endif
};
/*===========================================================================*/
/* Generic code. */
/*===========================================================================*/
static BaseSequentialStream* chp = (BaseSequentialStream*)&SD0;
/*
* LEDs blinker thread, times are in milliseconds.
*/
static THD_WORKING_AREA(waThread1, 128);
static THD_FUNCTION(Thread1, arg) {
(void)arg;
chRegSetThreadName("blinker");
while (true) {
palToggleLine(LINE_LED_BLUE);
chThdSleepMilliseconds(250);
}
}
/*
* Application entry point.
*/
int main(void) {
/*
* System initializations.
* - HAL initialization, this also initializes the configured device drivers
* and performs the board-specific initializations.
* - Kernel initialization, the main() function becomes a thread and the
* RTOS is active.
*/
halInit();
chSysInit();
/* Creates the blinking thread. */
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO + 1, Thread1, NULL);
/*
* Activates the serial driver 0 using the driver default configuration.
* P0.6(RX) and P0.2(TX) are routed to UART0. This requires S2 and S4 set to 0
* in order to have any output on the User USB.
*/
sdStart(&SD0, NULL);
palSetPadMode(GP0, 6, PAL_MODE_MULTIPLEXER(1) | PAL_ADUCM_PUL_PULLUP);
palSetPadMode(GP0, 7, PAL_MODE_MULTIPLEXER(2) | PAL_ADUCM_PUL_PULLUP);
/*
* Configuring SPI GPIOs. This requires S1 set to 1 in order to have
* the SPI PINs connected to the MCU.
*/
palSetLineMode(LINE_SPI1_CS, PAL_MODE_OUTPUT_PUSHPULL);
palSetLineMode(LINE_SPI1_MISO, PAL_MODE_MULTIPLEXER(1) |
PAL_ADUCM_PUL_PULLUP);
palSetLineMode(LINE_SPI1_MOSI, PAL_MODE_MULTIPLEXER(1) |
PAL_ADUCM_PUL_PULLUP);
palSetLineMode(LINE_SPI1_SCK, PAL_MODE_MULTIPLEXER(1) |
PAL_ADUCM_PUL_PULLUP);
/* ADXL355 Object Initialization.*/
adxl355ObjectInit(&ADXL355D1, txbuf, rxbuf);
/* Activates the ADXL355 driver.*/
adxl355Start(&ADXL355D1, &adxl355cfg);
/* Normal main() thread activity, printing MEMS data on the SDU1.*/
while (true) {
adxl355AccelerometerReadRaw(&ADXL355D1, accraw);
chprintf(chp, "ADXL355 Accelerometer raw data...\r\n");
for(i = 0; i < ADXL355_ACC_NUMBER_OF_AXES; i++) {
chprintf(chp, "%c-axis: %d\r\n", axisID[i], accraw[i]);
}
adxl355AccelerometerReadCooked(&ADXL355D1, acccooked);
chprintf(chp, "ADXL355 Accelerometer cooked data...\r\n");
for(i = 0; i < ADXL355_ACC_NUMBER_OF_AXES; i++) {
chprintf(chp, "%c-axis: %.3f\r\n", axisID[i], acccooked[i]);
}
chThdSleepMilliseconds(100);
cls(chp);
}
adxl355Stop(&ADXL355D1);
}