Skip to content

Commit f34849f

Browse files
author
elect-gombe
committed
M5Stack化、高速化、モデルの変更、ライセンス条項の追加
- M5Stackように書き換え - LCDを対応させた。 - ボタン操作を追加 - Zバッファをuint16_t型にしてメモリを節約、高速化 - 3Dモデルを初音ミクのデータに変更、それに伴うライセンス条項の追加(PCL) - このソフト自体のライセンス条項の追加(MIT License)
1 parent 41b597a commit f34849f

26 files changed

+12257
-478
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
#
55

66
PROJECT_NAME := spi_master
7-
7+
CFLAG = -Ofast --fast-math
88
include $(IDF_PATH)/make/project.mk
99

main/3dconfig.hpp

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
1+
/**
2+
Copyright (c) 2018 Gombe.
3+
4+
This software is released under the MIT License.
5+
http://opensource.org/licenses/mit-license.php
6+
*/
7+
18
#ifndef _3DCONFIG
29
#define _3DCONFIG
310

4-
#define DRAW_NLINES 60
5-
const static int window_width = 240;
6-
const static int window_height = 180;
11+
#define DRAW_NLINES 40
12+
13+
const static int window_width = 320;
14+
const static int window_height = 240;
715

816

917
#endif

0 commit comments

Comments
 (0)