blob: 004d9846336137c6a7d96c981d29fd13b6c88640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# vim:ft=make
#
# Copyright 2021 Birte Kristina Friesel
#
# SPDX-License-Identifier: CC0-1.0
ifdef app
loop = 1
override arch_drivers += ,i2c
CONFIG_driver_ssd1306 = y
COMMON_FLAGS += -DCONFIG_driver_ssd1306
CONFIG_driver_ssd1306_width = 128
CONFIG_driver_ssd1306_height = 64
endif
|