change clock a little, change -Og to -O3
This commit is contained in:
parent
cc9a1811fd
commit
1cc88f9d7d
2 changed files with 8 additions and 7 deletions
|
@ -5,9 +5,7 @@
|
||||||
|
|
||||||
static daguerre::fixed_font<bool> *font;
|
static daguerre::fixed_font<bool> *font;
|
||||||
|
|
||||||
std::string the_time() {
|
std::string time_to_string(time_t t) {
|
||||||
|
|
||||||
time_t t = time(0);
|
|
||||||
|
|
||||||
//convert to edt - TODO: timezones in euler
|
//convert to edt - TODO: timezones in euler
|
||||||
t -= 4 * 3600 * 1024;
|
t -= 4 * 3600 * 1024;
|
||||||
|
@ -43,8 +41,10 @@ int main() {
|
||||||
font = new daguerre::fixed_font<bool>(
|
font = new daguerre::fixed_font<bool>(
|
||||||
daguerre::try_load_psf("/assets/terminus/10x18-bold.psf").value());
|
daguerre::try_load_psf("/assets/terminus/10x18-bold.psf").value());
|
||||||
|
|
||||||
|
time_t t = euler::syscall::get_time();
|
||||||
|
|
||||||
pake::widgets::fixed_text *text =
|
pake::widgets::fixed_text *text =
|
||||||
new pake::widgets::fixed_text(the_time(), font,
|
new pake::widgets::fixed_text(time_to_string(t), font,
|
||||||
euler::syscall::encode_color(0xaa, 0xaa, 0xaa),
|
euler::syscall::encode_color(0xaa, 0xaa, 0xaa),
|
||||||
euler::syscall::encode_color(0x00, 0x00, 0x00),
|
euler::syscall::encode_color(0x00, 0x00, 0x00),
|
||||||
pake::halign::center, pake::valign::center);
|
pake::halign::center, pake::valign::center);
|
||||||
|
@ -55,8 +55,9 @@ int main() {
|
||||||
w.show();
|
w.show();
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
euler::syscall::sleep(512);
|
euler::syscall::sleep(1024 - t % 1024);
|
||||||
text->set_text(the_time());
|
t = euler::syscall::get_time();
|
||||||
|
text->set_text(time_to_string(t));
|
||||||
w.render_and_send_to_compositor();
|
w.render_and_send_to_compositor();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
makefile
2
makefile
|
@ -1,6 +1,6 @@
|
||||||
# arguments are not strictly necessary to build
|
# arguments are not strictly necessary to build
|
||||||
|
|
||||||
CC_EXTRA_ARGS = -Wall -Wextra -Og -ggdb
|
CC_EXTRA_ARGS = -Wall -Wextra -O3 -ggdb
|
||||||
|
|
||||||
.PHONY: default
|
.PHONY: default
|
||||||
default: build/disk.iso
|
default: build/disk.iso
|
||||||
|
|
Reference in a new issue