From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Thomas Fitzsimmons Newsgroups: gmane.emacs.devel Subject: [GNU ELPA] New package: ulisp-repl Date: Thu, 01 Jun 2023 12:02:28 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="4569"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Jun 01 18:03:31 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1q4klu-0000r6-6X for ged-emacs-devel@m.gmane-mx.org; Thu, 01 Jun 2023 18:03:31 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1q4klS-0005g9-4z; Thu, 01 Jun 2023 12:03:02 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q4kl1-0005Cu-2j for emacs-devel@gnu.org; Thu, 01 Jun 2023 12:02:35 -0400 Original-Received: from mail.fitzsim.org ([69.165.165.189]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q4kky-0001kQ-P4 for emacs-devel@gnu.org; Thu, 01 Jun 2023 12:02:34 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=fitzsim.org ; s=20220430; h=Content-Type:MIME-Version:Message-ID:Date:Subject:To:From: Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=Nr9kARZQuKfkIeXPj9DmVPLdYVjWLyGDjr3Xwvk1JSc=; b=bMB7+9QZv1Tn07KWOea17ltAxB zGFvShSRYD6422K+xm3CZ6J2/Dtj9w0BlvchET7INCMPTrQ1PVsCDjT17jYBZRzvdWT1UNa9LPeaj dby+rpznpXhERNXdbXE35OyWxGy+lpZy9pNduS/18Idw38cBehmV7Hn1syIIPsit09Nl1xaVunI+q Z+f4Zy+ddtimaPVrrzWI2DDl6YG1jsb1MwWe8tRbEZoPCrjke673Uoj2TIVn4Y0L4sVHq5lhpNCIT Frq4gEVL7CgAjLQf+CHPeor9njRtU5eQXpAHsliKWlu49taUkG/kcF5JyiaS6HIECDC0i5hF3bqI2 gf+YygMw==; Original-Received: from [192.168.1.1] (helo=localhost.localdomain) by mail.fitzsim.org with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1q4kkv-000TXP-RV for emacs-devel@gnu.org; Thu, 01 Jun 2023 12:02:30 -0400 Received-SPF: pass client-ip=69.165.165.189; envelope-from=fitzsim@fitzsim.org; helo=mail.fitzsim.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:306518 Archived-At: Hi, I pushed a new package to GNU ELPA: https://git.sr.ht/~fitzsim/ulisp-repl ;;; Commentary: ;; Interact with uLisp running on a target board, through a serial ;; port. ;; Usage: ;; M-x ulisp-repl ;; Uses Emacs's built-in serial-port support. I you are running on a ;; non-Linux kernel, you will need to adapt ;; `ulisp--select-serial-device'. ;; To browse uLisp reference documentation: ;; M-x eww RET http://www.ulisp.com/show?3L RET Thomas