Skip to content

Commit

Permalink
Move screen framework into component (project-chip#1555)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlepage-google authored and kedars committed Jul 19, 2020
1 parent 85bd31a commit a7fb045
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
24 changes: 24 additions & 0 deletions examples/common/screen-framework/component.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#
# Copyright (c) 2020 Project CHIP Authors
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Description:
# Component makefile for the screen framework component used by the CHIP
# ESP32 demo applications.
#

COMPONENT_ADD_INCLUDEDIRS := include
COMPONENT_SRCDIRS := .
COMPONENT_OBJS := Display.o ScreenManager.o Screen.o ListScreen.o
1 change: 1 addition & 0 deletions examples/wifi-echo/server/esp32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ PROJECT_NAME := chip-wifi-echo
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/third_party/connectedhomeip/config/esp32/components \
$(PROJECT_PATH)/../../../common/m5stack-tft/repo/components \
$(PROJECT_PATH)/../../../common/QRCode \
$(PROJECT_PATH)/../../../common/screen-framework \

CXXFLAGS += -std=c++11 -Os
CPPFLAGS += -Os
Expand Down

0 comments on commit a7fb045

Please sign in to comment.