Ignore:
Timestamp:
Feb 13, 2025, 3:21:41 PM (3 months ago)
Author:
Zed
Message:

ADC module was activated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ctrl/firmware/Main/CubeMX/Middlewares/Third_Party/FatFs/src/ff.h

    r74 r91  
    123123        DWORD   database;               /* Data base sector */
    124124        DWORD   winsect;                /* Current sector appearing in the win[] */
    125         BYTE    win[_MAX_SS];   /* Disk access window for Directory, FAT (and file data at tiny cfg) */
     125        BYTE    win[_MAX_SS] __ALIGNED(32);       /* Disk access window for Directory, FAT (and file data at tiny cfg) */
    126126} FATFS;
    127127
     
    168168#endif
    169169#if !_FS_TINY
    170         BYTE    buf[_MAX_SS];   /* File private data read/write window */
     170        BYTE    buf[_MAX_SS] __ALIGNED(32);     /* File private data read/write window */
    171171#endif
    172172} FIL;
Note: See TracChangeset for help on using the changeset viewer.