Skip to content

Commit

Permalink
Add empty app and empty lib
Browse files Browse the repository at this point in the history
PUBLISHED_FROM=54a14a24514c3231b1e0f41db157d66918c81b68
  • Loading branch information
cpq authored and dimonomid committed May 28, 2017
1 parent be45fde commit e587b72
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
13 changes: 13 additions & 0 deletions LICENSE
@@ -0,0 +1,13 @@
Copyright 2017 Cesanta Software Limited

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.
1 change: 1 addition & 0 deletions README.md
@@ -0,0 +1 @@
# A blank Mongoose OS app
5 changes: 5 additions & 0 deletions fs/index.html
@@ -0,0 +1,5 @@
<html>
<body>
<h1>Welcome to the empty project</h1>
</body>
</html>
13 changes: 13 additions & 0 deletions mos.yml
@@ -0,0 +1,13 @@
author: mongoose-os
name: empty
description: An empty app that does nothing
# arch: PLATFORM
version: 1.0
skeleton_version: 2017-05-18
sources:
- src
filesystem:
- fs
config_schema:
libs:
tags:
5 changes: 5 additions & 0 deletions src/main.c
@@ -0,0 +1,5 @@
#include "fw/src/mgos_app.h"

enum mgos_app_init_result mgos_app_init(void) {
return MGOS_APP_INIT_SUCCESS;
}

0 comments on commit e587b72

Please sign in to comment.