mirror of
https://github.com/google/pebble.git
synced 2025-05-19 09:54:55 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
48
third_party/jerryscript/targets/mbedos5/source/main.cpp
vendored
Normal file
48
third_party/jerryscript/targets/mbedos5/source/main.cpp
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* Copyright (c) 2016 ARM 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.
|
||||
*/
|
||||
|
||||
// Provides jsmbed_js_launch()
|
||||
#include "jerryscript-mbed-launcher/launcher.h"
|
||||
|
||||
// Provides JSMBED_USE_WRAPPER()
|
||||
#include "jerryscript-mbed-library-registry/registry.h"
|
||||
|
||||
// Provides the base wrapper registration symbol that JSMBED_USE_WRAPPER uses.
|
||||
// This means all of the base handlers will be registered.
|
||||
#include "jerryscript-mbed-drivers/lib_drivers.h"
|
||||
|
||||
#include "jerryscript-mbed-event-loop/EventLoop.h"
|
||||
|
||||
#include "Callback.h"
|
||||
#include "Serial.h"
|
||||
|
||||
using mbed::js::EventLoop;
|
||||
using mbed::Callback;
|
||||
|
||||
int main() {
|
||||
mbed::Serial pc(USBTX, USBRX);
|
||||
pc.baud(115200);
|
||||
|
||||
JERRY_USE_MBED_LIBRARY(base);
|
||||
|
||||
// Incude more wrapper packages here if you want to use them. For exmaple:
|
||||
// JERRY_USE_MBED_LIBRARY(lwip_interface);
|
||||
// JERRY_USE_MBED_LIBRARY(esp8266_interface);
|
||||
// JERRY_USE_MBED_LIBRARY(simple_mbed_client);
|
||||
|
||||
jsmbed_js_launch();
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue