- DS-5を終了させる
- 以下のファイルをエディタで開く
C:\Users\xxxxxx\AppData\Roaming\ARM\DS-5\workbench\configuration\config.ini
上記ディレクトリ名は、私の設定です(ユーザー名はログインユーザになります)。
- config.iniの最後の行に以下を追加する
#!/usr/bin/env python | |
#encoding=utf-8 | |
# Convert image to Pwmout grayscale data for dot-matrix LED | |
# Input image format can be JPEG, PNG etc | |
from PIL import Image | |
import sys | |
if __name__ == "__main__": |
#!/usr/bin/env python | |
#encoding=utf-8 | |
# Generate UTF-8 to Kuten code conversion table | |
# | |
# You can find the UTF-8 table here: | |
# http://ash.jp/code/unitbl21.htm | |
def print_expanded_address(table): | |
print "const uint32_t GT20L16Y1J_address_table[] = {" |
$ git remote add upstream [email protected]:mbedmicro/mbed.git
$ git fetch upstream
$ git merge upstream/master
$ git push
$ git remote add xxx_work [email protected]:mbedmicro/mbed_private_xxx.git
""" | |
mbed SDK | |
Copyright (c) 2011-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 |
#!/usr/local/bin/perl | |
# | |
# Copyright 2010-2012 ARM Limited. All Rights Reserved. | |
# <[email protected]> | |
# shrink_sysinc.pl - tries to remove expanded system include file from preprocessed source code | |
# | |
# Usage: shrink_sysinc.pl test.ii > test.cpp | |
# TODO: |