git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14667 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Rocco Marco Guglielmi 2021-08-19 08:53:47 +00:00
parent 2a9897c8d7
commit b9509bee9f
2 changed files with 4 additions and 2 deletions

View File

@ -74,6 +74,8 @@
*****************************************************************************
*** Next ***
- FIX: Fixed wrong macro in the demo STM32F7xx-SPI-ADXL355 (bug #1175)
(backported to 21.6.1).
- FIX: Fixed problem with RC initialization mask of the GPIO for the
STM32L4x3 (bug #1174) (backported to 20.3.4).
- FIX: Fixed problem with N25Q driver (bug #1173)

View File

@ -29,8 +29,8 @@
/*
* SPI TX and RX buffers.
*/
CC_ALIGN(32) static uint8_t txbuf[32];
CC_ALIGN(32) static uint8_t rxbuf[32];
CC_ALIGN_DATA(32) static uint8_t txbuf[32];
CC_ALIGN_DATA(32) static uint8_t rxbuf[32];
/* ADXL355 Driver: This object represent an ADXL355 instance */
static ADXL355Driver ADXL355D1;