-
Notifications
You must be signed in to change notification settings - Fork 0
/
sponsors.c
41 lines (35 loc) · 1.03 KB
/
sponsors.c
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
#include "sponsors.h"
// Handy definition.
#define DEFINE_SPONSOR(logo_id, the_text) {\
.text = the_text,\
.logo = logo_id##_png,\
.logo_len = logo_id##_png_len\
}
// Temporary sponsor placeholder of.
#include "images/temp_logo.c"
// Max. image size: 200x50.
// Allnet logo.
#include "images/logo/allnet.c"
// Bosch logo.
#include "images/logo/bosch.c"
// Espressif logo.
#include "images/logo/espressif.c"
// Lattice logo.
#include "images/logo/lattice.c"
// Raspberry pi logo.
#include "images/logo/raspberry_pi.c"
// The array.
sponsor_t sponsors_arr[] = {
// Temporary sponsor placeholder of.
DEFINE_SPONSOR(temp_logo, "Placeholder"),
// Allnet.
DEFINE_SPONSOR(logo_allnet, "Production partner"),
// Bosch.
DEFINE_SPONSOR(logo_bosch, "Sensors:\nBNO055\nBME680"),
// Espressif.
DEFINE_SPONSOR(logo_espressif, "Main CPU: ESP32\nMem.: ESP-PSRAM64H"),
// Lattice.
DEFINE_SPONSOR(logo_lattice, "FPGA:\nICE40UP5K"),
// Raspberry pi.
DEFINE_SPONSOR(logo_raspberry_pi, "Co-processor:\nRP2040"),
};