The Squirrel interpreter for FRDM-K64F, extended with a set of classes that provide access to the mbed functionality (currently DigitalIn, DigitalInOut, DigitalOut, InterruptIn, PwmOut, Ticker, Timeout, Timer).

Dependencies:   SQUIRREL3 mbed sqbind-0_99

The Squirrel interpreter for FRDM-K64F.

NOTE: Currently of POC quality.

See http://www.squirrel-lang.org/ for information about the Squirrel language.

Currently the following (a subset of their functionality) mbed classes are available from within Squirrel:

  • DigitalIn
  • DigitalOut
  • DigitalInOut
  • PwmOut
  • Ticker
  • Timeout
  • Timer

In addition, InterruptIn is supported, but interrupts are noted when they occur, but only delivered from the main loop of the interpreter.

See also README.txt in the root of the project.

Committer:
jhnwkmn
Date:
Tue Dec 16 13:12:34 2014 +0000
Revision:
1:540008bb92a2
Parent:
0:6f55c7651ccc
Updated license.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jhnwkmn 0:6f55c7651ccc 1 /*
jhnwkmn 1:540008bb92a2 2 Copyright 2014 Johan Wikman
jhnwkmn 1:540008bb92a2 3
jhnwkmn 1:540008bb92a2 4 Licensed under the Apache License, Version 2.0 (the "License");
jhnwkmn 1:540008bb92a2 5 you may not use this file except in compliance with the License.
jhnwkmn 1:540008bb92a2 6 You may obtain a copy of the License at
jhnwkmn 1:540008bb92a2 7
jhnwkmn 1:540008bb92a2 8 http://www.apache.org/licenses/LICENSE-2.0
jhnwkmn 1:540008bb92a2 9
jhnwkmn 1:540008bb92a2 10 Unless required by applicable law or agreed to in writing, software
jhnwkmn 1:540008bb92a2 11 distributed under the License is distributed on an "AS IS" BASIS,
jhnwkmn 1:540008bb92a2 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
jhnwkmn 1:540008bb92a2 13 See the License for the specific language governing permissions and
jhnwkmn 1:540008bb92a2 14 limitations under the License.
jhnwkmn 0:6f55c7651ccc 15 */
jhnwkmn 0:6f55c7651ccc 16
jhnwkmn 0:6f55c7651ccc 17 #include <sqmbed/timer.h>
jhnwkmn 0:6f55c7651ccc 18
jhnwkmn 0:6f55c7651ccc 19 namespace SqMbed
jhnwkmn 0:6f55c7651ccc 20 {
jhnwkmn 0:6f55c7651ccc 21
jhnwkmn 0:6f55c7651ccc 22 Timer::Timer()
jhnwkmn 0:6f55c7651ccc 23 {
jhnwkmn 0:6f55c7651ccc 24 }
jhnwkmn 0:6f55c7651ccc 25
jhnwkmn 0:6f55c7651ccc 26 Timer::~Timer()
jhnwkmn 0:6f55c7651ccc 27 {
jhnwkmn 0:6f55c7651ccc 28 }
jhnwkmn 0:6f55c7651ccc 29
jhnwkmn 0:6f55c7651ccc 30 void Timer::start()
jhnwkmn 0:6f55c7651ccc 31 {
jhnwkmn 0:6f55c7651ccc 32 m_timer.start();
jhnwkmn 0:6f55c7651ccc 33 }
jhnwkmn 0:6f55c7651ccc 34
jhnwkmn 0:6f55c7651ccc 35 void Timer::stop()
jhnwkmn 0:6f55c7651ccc 36 {
jhnwkmn 0:6f55c7651ccc 37 m_timer.stop();
jhnwkmn 0:6f55c7651ccc 38 }
jhnwkmn 0:6f55c7651ccc 39
jhnwkmn 0:6f55c7651ccc 40 void Timer::reset()
jhnwkmn 0:6f55c7651ccc 41 {
jhnwkmn 0:6f55c7651ccc 42 m_timer.reset();
jhnwkmn 0:6f55c7651ccc 43 }
jhnwkmn 0:6f55c7651ccc 44
jhnwkmn 0:6f55c7651ccc 45 float Timer::read() const
jhnwkmn 0:6f55c7651ccc 46 {
jhnwkmn 0:6f55c7651ccc 47 return m_timer.read();
jhnwkmn 0:6f55c7651ccc 48 }
jhnwkmn 0:6f55c7651ccc 49
jhnwkmn 0:6f55c7651ccc 50 int Timer::read_ms() const
jhnwkmn 0:6f55c7651ccc 51 {
jhnwkmn 0:6f55c7651ccc 52 return m_timer.read_ms();
jhnwkmn 0:6f55c7651ccc 53 }
jhnwkmn 0:6f55c7651ccc 54
jhnwkmn 0:6f55c7651ccc 55 int Timer::read_us() const
jhnwkmn 0:6f55c7651ccc 56 {
jhnwkmn 0:6f55c7651ccc 57 return m_timer.read_us();
jhnwkmn 0:6f55c7651ccc 58 }
jhnwkmn 0:6f55c7651ccc 59
jhnwkmn 0:6f55c7651ccc 60 // static
jhnwkmn 0:6f55c7651ccc 61 void Timer::bind(HSQUIRRELVM vm)
jhnwkmn 0:6f55c7651ccc 62 {
jhnwkmn 0:6f55c7651ccc 63 SqBind<Timer>::init(vm, _SC("Timer"));
jhnwkmn 0:6f55c7651ccc 64 sqbind_method(vm, "start", &Timer::start);
jhnwkmn 0:6f55c7651ccc 65 sqbind_method(vm, "stop", &Timer::stop);
jhnwkmn 0:6f55c7651ccc 66 sqbind_method(vm, "reset", &Timer::reset);
jhnwkmn 0:6f55c7651ccc 67 sqbind_method(vm, "read", &Timer::read);
jhnwkmn 0:6f55c7651ccc 68 sqbind_method(vm, "read_ms", &Timer::read_ms);
jhnwkmn 0:6f55c7651ccc 69 sqbind_method(vm, "read_us", &Timer::read_us);
jhnwkmn 0:6f55c7651ccc 70 }
jhnwkmn 0:6f55c7651ccc 71
jhnwkmn 0:6f55c7651ccc 72 }