changelog shortlog tags changeset files revisions annotate raw

serial-term-wrapper.el

changeset 66: 5b737eefe5ea
author: kim.vanwyk
date: Wed Nov 10 15:19:03 2010 +0200 (18 months ago)
permissions: -rw-r--r--
description: Adding CSharp Mode and Google Weather
1(defun serial-start-term (port speed)
2(interactive (list (read-string "port: " "COM6")
3 (read-string "speed: " "115200")))
4(make-serial-process :port port :speed (string-to-int speed))
5)
6
7(defun serial-send-string (str)
8(interactive (list (read-string "string to send: ")))
9(process-send-string "COM6" str))
10
11(defun serial-send-PTC-wrapped-string-4660 (str)
12(interactive (list (read-string "string to wrap and send: ")))
13(serial-send-string (concat "" str "")))