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-sync-forked-repo.md
Last active February 16, 2022 09:23
How to sync forked repository

Do this once:

$ git remote add upstream git@github.com:armmbed/mbed-os.git

And do this when need to sync:

$ git fetch upstream
$ git merge upstream/master
$ git push
@toyowata
toyowata / readme_esptool.md
Last active February 13, 2022 02:14
Usage of esptool.py

Install esptool.py

$ pip3 install esptool
$ esptool.py version
esptool.py v3.2
3.2

Clone ESP8266 firmware

@toyowata
toyowata / main.cpp
Created September 9, 2021 10:28
Socket API example for Mbed OS 6.x
/* WiFi Example
* 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
@toyowata
toyowata / Mbed-2020-11.md
Last active November 28, 2020 12:36
mbed祭り 2020@秋のオンラインまとめ

mbed祭り 2020@秋のオンラインまとめ

Mbedユーザー(バーチャル)ミートアップイベント「mbed祭り 2020@秋のオンライン」が、2020年11月28日(土)にYoutube Liveで行われました。

Twitterでは #mbed_fest ハッシュタグ付きのつぶやきが、多数ありました。ありがとうございます。Twitterのまとめは、こちらです。

https://togetter.com/li/1629205

イベント当日の模様は、YouTubeライブ配信されました。動画はこちらからご覧になれます。

@toyowata
toyowata / create_github-repo.md
Created June 26, 2020 02:26
Create GitHub repo and fetch from other repo
@toyowata
toyowata / How-to-add-new-DAPLink-target.MD
Last active April 19, 2020 13:34
DAPLink 新規ターゲットの追加
@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"
}
}
}