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
49
55
/* ... */
#ifndef __MAIN_H
#define __MAIN_H
#include "stm32f4xx_hal.h"
#include "stm324xg_eval.h"
#include "stm324xg_eval_lcd.h"
#include "stm324xg_eval_sram.h"
#include "ff_gen_drv.h"
#include "sd_diskio.h"
#include <stdint.h>
#include <string.h>
#include "jpeglib.h"
#include "decode.h"
#include "encode.h"
11 includes
Includes
typedef struct RGB
{
uint8_t B;
uint8_t G;
uint8_t R;
...}RGB_typedef;
Exported types
#define IMAGE_HEIGHT 240
#define IMAGE_WIDTH 320
#define IMAGE_QUALITY 90
Exported constants
/* ... */#endif