This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source [find interface/ftdi/um232h.cfg] | |
transport select jtag | |
adapter_khz 200 | |
source [find cpu/arm/arm7tdmi.tcl] | |
jtag newtap lc82162 cpu -irlen 4 -expected-id 0x3f1f0f0f | |
target create lc82162.cpu arm7tdmi -endian little -chain-position lc82162.cpu | |
reset_config trst_and_srst |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- coding: utf-8 -*- | |
Plugin.create :fav_rt do | |
command(:fav_rt, | |
name: 'ふぁぼ公', | |
condition: lambda{ |opt| true }, | |
visible: true, | |
role: :timeline) do |opt| | |
opt.messages.each { |m| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// orb.js tips 2012.04.19 | |
// How to calc the position of satellites | |
// https://github.com/lizard-isana/orb.js | |
// demo: http://www.lizard-tail.com/isana/lab/orb/ | |
// 人工衛星の位置を計算する方法 | |
// 衛星の位置計算に必要なのは core.js と satellite.js の二つ.。 | |
// https://github.com/lizard-isana/orb.js/blob/master/core.js | |
// https://github.com/lizard-isana/orb.js/blob/master/satellite.js |