Miko Gitlab Repository
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Swapnil Nerkar
cross_compile_libs
Commits
b9ec788c
Commit
b9ec788c
authored
1 year ago
by
swapnil.nerkar
Browse files
Options
Download
Email Patches
Plain Diff
lvgl lib updated
parent
88d6f501
main
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
54 deletions
+2
-54
liblvgl/include/gpio.h
liblvgl/include/gpio.h
+0
-52
liblvgl/include/lv_conf.h
liblvgl/include/lv_conf.h
+2
-2
liblvgl/lib/liblvgl.so
liblvgl/lib/liblvgl.so
+0
-0
No files found.
liblvgl/include/gpio.h
deleted
100644 → 0
View file @
88d6f501
/*
* gpio.h
*
* Author: Swapnil N
*/
#pragma once
#ifndef GPIO_H
#define GPIO_H
// C library headers
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
enum
{
LOW
=
0
,
HIGH
=
1
,
read_error
=
2
,
}
gpio_status
;
typedef
enum
{
PA
=
0
,
PB
=
1
,
PC
=
2
,
PD
=
3
,
}
gpio_port
;
typedef
enum
{
IN
=
0
,
OUT
=
1
,
}
gpio_mode
;
int8_t
gpio_init
(
gpio_port
port
,
int
pin
,
gpio_mode
mode
);
int8_t
gpio_toggle_out
(
gpio_port
port
,
int
pin
,
gpio_status
status
);
gpio_status
gpio_status_read
(
gpio_port
port
,
int
pin
);
int8_t
gpio_main
();
#ifdef __cplusplus
}
#endif
#endif
/* GPIO_H */
\ No newline at end of file
This diff is collapsed.
Click to expand it.
liblvgl/include/lv_conf.h
View file @
b9ec788c
...
...
@@ -356,8 +356,8 @@ extern uint32_t custom_tick_get(void);
/*Demonstrate special features*/
#define LV_FONT_MONTSERRAT_12_SUBPX 0
#define LV_FONT_MONTSERRAT_28_COMPRESSED 0
/*bpp = 3*/
#define LV_FONT_DEJAVU_16_PERSIAN_HEBREW
0
/*Hebrew, Arabic, Persian letters and all their forms*/
#define LV_FONT_SIMSUN_16_CJK
0
/*1000 most common CJK radicals*/
#define LV_FONT_DEJAVU_16_PERSIAN_HEBREW
1
/*Hebrew, Arabic, Persian letters and all their forms*/
#define LV_FONT_SIMSUN_16_CJK
1
/*1000 most common CJK radicals*/
/*Pixel perfect monospace fonts*/
#define LV_FONT_UNSCII_8 0
...
...
This diff is collapsed.
Click to expand it.
liblvgl/lib/liblvgl.so
View file @
b9ec788c
No preview for this file type
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help