lv_label_set_text(label, "Welcome");
lv_label_set_text(label, t("Hello world!");
lv_label_set_text(label, t("There are %d errors");
lv_label_set_text(label, t("Missing translation");
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
root /var/www/wordpress; | |
index index.php index.html index.htm index.nginx-debian.html; | |
server_name _; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stm32f1xx_hal.h" | |
UART_HandleTypeDef UartHandle; /* UART 핸들러 */ | |
__IO ITStatus UartReady = RESET; /* UART 상태 지시자 */ | |
#define RXBUFFERSIZE 10 | |
uint8_t aRxBuffer[RXBUFFERSIZE]; /* UART 수신 버퍼 */ | |
int main(void) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file lv_conf.h | |
* | |
*/ | |
#ifndef LV_CONF_H | |
#define LV_CONF_H | |
/*=================== | |
Dynamic memory | |
*===================*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
strace: [ Process PID=27942 runs in 32 bit mode. ] | |
strace: Process 27943 attached | |
strace: Process 27944 attached | |
strace: [ Process PID=27944 runs in 64 bit mode. ] | |
[pid 27944] stat("/home/seyyah", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
[pid 27944] stat(".", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
strace: Process 27945 attached | |
[pid 27945] stat("/usr/lib/jvm/java-8-oracle/bin/../lib/amd64/jli/tls/haswell/x86_64", 0x7ffc6a28e060) = -1 ENOENT (No such file or directory) | |
[pid 27945] stat("/usr/lib/jvm/java-8-oracle/bin/../lib/amd64/jli/tls/haswell", 0x7ffc6a28e060) = -1 ENOENT (No such file or directory) | |
[pid 27945] stat("/usr/lib/jvm/java-8-oracle/bin/../lib/amd64/jli/tls/x86_64", 0x7ffc6a28e060) = -1 ENOENT (No such file or directory) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["ctrl+shift+r"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+shift+t"], "command": "toggle_comment", "args": { "block": true } }, | |
{ "keys": ["ctrl+shift+8"], "command": "fold" }, | |
{ "keys": ["ctrl+shift+9"], "command": "unfold" }, | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Documentation </title> | |
<style>/*! | |
* Bootstrap v3.3.7 (http://getbootstrap.com) | |
* Copyright 2011-2016 Twitter, Inc. |
lvgl wiki sayfasına hoşgeldiniz!
Dokümantasyon, littlevgl.com'den buraya taşınacak.
Katkınız için teşekkürler!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# get the submodule initially | |
git submodule add ssh://bla submodule_dir | |
git submodule init | |
# time passes, submodule upstream is updated | |
# and you now want to update | |
# change to the submodule directory | |
cd submodule_dir |