Skip to content

Instantly share code, notes, and snippets.

View toyowata's full-sized avatar

Toyomasa Watarai toyowata

View GitHub Profile
@toyowata
toyowata / how-to-install-yotta-os-x.md
Last active March 22, 2016 14:29
yotta がインストール(アップデート)できない場合の対処方法(OS X)

yotta がインストール(アップデート)できない場合の対処方法(OS X)

OS X版で yotta をアップデートしようとしたのですが、以下のようなエラーが出て、インストールできませんでした。

$ sudo pip install yotta
# snip
Requirement already satisfied (use --upgrade to upgrade): Cython in /Library/Python/2.7/site-packages (from hidapi->pyOCD<1.0,>=0.3->valinor<1.0,>=0.0.0->yotta)
Installing collected packages: setuptools, enum34, ipaddress, idna, pycparser, cffi, cryptography, PyJWT, pathlib, functools32, jsonschema, argcomplete, mbed-test-wrapper, pyyaml, intelhex, hidapi, pyOCD, argparse, xmltodict, project-generator-definitions, project-generator, pyelftools, valinor, jsonpointer, yotta
@toyowata
toyowata / pwmout_api.c
Created May 19, 2016 05:02
[mbed LPC81x] fix output conflit
/* mbed Microcontroller Library
* Copyright (c) 2006-2013 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
@toyowata
toyowata / esp8266_test.py
Last active June 26, 2018 03:18
AT command test code for the ESP8266 WiFi module
#! /usr/bin/env python
# codeing: utf-8
import serial
def send_normal_command(cmd):
ser.write(cmd)
rcv_buf = ""
while rcv_buf != "OK\r\n":
rcv_buf = ser.readline()
@toyowata
toyowata / How-to-add-new-DAPLink-target.MD
Last active April 19, 2020 13:34
DAPLink 新規ターゲットの追加
@toyowata
toyowata / gpio_irq_api.c
Created September 16, 2016 08:19
Fix gpio_irq_api.c for LPC11U68
/* mbed Microcontroller Library
* Copyright (c) 2006-2013 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
@toyowata
toyowata / How-to-sync-forked-repo.md
Last active February 16, 2022 09:23
How to sync forked repository

Do this once:

$ git remote add upstream [email protected]:armmbed/mbed-os.git

And do this when need to sync:

$ git fetch upstream
$ git merge upstream/master
$ git push
let last_value = 0
let 傾き = 0
let rainbow: neopixel.Strip = null
rainbow = neopixel.create(DigitalPin.P0, 30, NeoPixelMode.RGB)
rainbow.showRainbow(1, 360)
last_value = 0
basic.forever(() => {
傾き = input.rotation(Rotation.Pitch)
if (last_value != 傾き) {
rainbow.rotate(傾き)
@toyowata
toyowata / main.cpp
Created December 9, 2018 01:50
reboot device example for simple-mbed-cloud-client template
// ----------------------------------------------------------------------------
// Copyright 2016-2018 ARM Ltd.
//
// SPDX-License-Identifier: Apache-2.0
//
// 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
@toyowata
toyowata / mbed_app.json
Created February 11, 2020 01:51
Mbed bare-metal profile example
{
"requires": ["bare-metal"],
"target_overrides": {
"LPC11U68" : {
"target.device_has_add" : ["USTICKER"],
"target.tickless-from-us-ticker" : true,
"target.boot-stack-size" :"0x400"
}
}
}