Select one of the symbols to view example projects that use it.
 
Outline
Includes
#include "ff.h"
#include "stm32f4xx_hal.h"
#define JFILE
#define JMALLOC
#define JFREE
read_file(FIL *, uint8_t *, uint32_t);
write_file(FIL *, uint8_t *, uint32_t);
Files
loading...
CodeScopeSTM32 Libraries and SamplesLibJPEG_EncodingInc/jdata_conf.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file LibJPEG/LibJPEG_Encoding/Inc/jdata_conf.h * @author MCD Application Team * @brief ****************************************************************************** * @attention * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** *//* ... */ /* Includes ------------------------------------------------------------------*/ #include "ff.h" #include "stm32f4xx_hal.h" Includes /* Private typedef -----------------------------------------------------------*/ /* Private define ------------------------------------------------------------*/ /* Private macro -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private function prototypes -----------------------------------------------*/ /* Private functions ---------------------------------------------------------*/ #define JFILE FIL #define JMALLOC malloc #define JFREE free size_t read_file (JFILE *file, uint8_t *buf, uint32_t sizeofbuf); size_t write_file (JFILE *file, uint8_t *buf, uint32_t sizeofbuf); #define JFREAD(file,buf,sizeofbuf) \ read_file (file,buf,sizeofbuf)... #define JFWRITE(file,buf,sizeofbuf) \ write_file (file,buf,sizeofbuf)...