# うまい方法あったら、コメントください.
問題点
Raspberry PiにUSB-UARTで接続すると、コンソールの表示がいまいち。
改善方法
-
サイズ: PCのコンソールサイズを変えて、自動で対応はできないが、以下のスクリプトで、現在のサイズに合わせてくれる
ダウンロード
wget https://raw.githubusercontent.com/akkana/scripts/master/termsize
chmod +x termsize
```
pi@raspberrypi:~ $ ./temsize
...
Reset the terminal to 43 rows 103 cols
pi@raspberrypi:~ $
- 参考: [Telling your Raspberry Pi that your terminal is bigger than 24 lines](http://shallowsky.com/blog/tags/embedded/)
- `byobu` 上での変更はだめっぽい。一度、抜けて(`CTRL-a d`)、 `./termsize`で設定する。
使っている環境
- Raspberry Pi 2 Model B
- Raspbian Jessie Lite ( 2016-03-18-raspbian-jessie-lite.img )
- PC: Windows 7 (64ビット)
- TeraTerm ( https://en.osdn.jp/projects/ttssh2/releases/ )
- PL2303HX(ぱちもん?)のUSB-UARTケーブル
termsize
#!/usr/bin/env python
# Get the current size of the terminal window, and set stty size accordingly.
# A replacement for xterm's resize program, with no X dependency.
# Useful when logged in over a serial line.
# Copyright 2013 by Akkana Peck -- share and enjoy under the GPL v2 or later.
import os, sys
import fcntl
import posix
import struct
import time
import re
import termios
import select
tty = open('/dev/tty', 'r+')
tty.write('\033[7\033[r\033[999;999H\033[6n')
tty.flush()
fd = sys.stdin.fileno()
oldterm = termios.tcgetattr(fd)
newattr = oldterm[:]
newattr[3] = newattr[3] & ~termios.ICANON & ~termios.ECHO
termios.tcsetattr(fd, termios.TCSANOW, newattr)
oldflags = fcntl.fcntl(fd, fcntl.F_GETFL)
fcntl.fcntl(fd, fcntl.F_SETFL, oldflags | os.O_NONBLOCK)
try:
while True:
r, w, e = select.select([fd], [], [])
if r:
output = sys.stdin.read()
break
finally:
termios.tcsetattr(fd, termios.TCSAFLUSH, oldterm)
fcntl.fcntl(fd, fcntl.F_SETFL, oldflags)
rows, cols = map(int, re.findall(r'\d+', output))
fcntl.ioctl(fd, termios.TIOCSWINSZ,
struct.pack("HHHH", rows, cols, 0, 0))
print "\nReset the terminal to", rows, "rows", cols, "cols"