Search lua-l
This index contains 143,615 documents and
1,774,615 keywords. Last update on
2023-03-09 .
- 61. Re: dsPIC33F Lua support (Was: Advocating Lua on an embedded systems fair) (score: 22)
- Author: David Given <dg@...>
- Date: Wed, 11 Feb 2009 11:21:10 +0000
- One idea I've been vaguely mulling over for a while is to emulate a 32-bit system on a 8-bit embedded processor. While this does sound insane, and does have obvious performance issues, it would allow
- 62. Re: Minimum size Lua without floats (e. g. for CORTEX-M0 cores) (score: 19)
- Author: Flyer31 Test <flyer31@...>
- Date: Tue, 18 May 2021 06:45:18 +0200
- Thank you ... I also recognized now that the STM32G4 alreaedy are available in QFN32 / 5x5 mm, and this is fine for me (STM32G4 including 500kB ROM / 140kB RAM and Floating point)... . And I understa
- 63. Re: Minimum size Lua without floats (e. g. for CORTEX-M0 cores) (score: 19)
- Author: Philippe Verdy <verdyp@...>
- Date: Sun, 16 May 2021 16:15:29 +0200
- Remember that old home computers had their BIOS/device handlers, basic filesystem and BASIC implemented entirely in a 32KB ROM and were still working within 16KB of RAM, leaving 16KB for the devices
- 64. [ANN] rpi-gpio 0.2 released (score: 19)
- Author: Thijs Schreijer <thijs@...>
- Date: Thu, 27 Mar 2014 09:20:02 +0000
- The new addition to this release is a module to drive hd44780 [8] compatible LCD displays (in 4bit parallel mode) from the Raspberry Pi GPIO interface. It is an original Python module from Adafruit [
- 65. Re: lua - running bytecode from an external ram space (score: 19)
- Author: "Dimiter \"malkia\" Stanev" <malkia@...>
- Date: Wed, 13 Jul 2011 11:20:32 -0700
- Have you checked the embedded lua project? http://www.eluaproject.net/ On 7/13/2011 7:03 AM, imo wrote: Hi, as the Lua is a virtual machine based, let me kindly ask you following: 1.would it be possi
- 66. Re: lua - running bytecode from an external ram space (score: 19)
- Author: James Graves <james.c.graves.jr@...>
- Date: Wed, 13 Jul 2011 11:59:56 -0500
- This will require significant changes to the Lua VM, and I don't think it will be worth the effort. You say speed is not a priority, but running Lua on a microcontroller _that_ small with so little m
- 67. lua - running bytecode from an external ram space (score: 19)
- Author: "imo" <imo@...>
- Date: Wed, 13 Jul 2011 16:03:09 +0200 (CEST)
- Hi, as the Lua is a virtual machine based, let me kindly ask you following: 1.would it be possible to allocate the vm ?working space?, or some parts of it (e.g. tables, functions) to an external ram,
- 68. [ANN] eLua 0.5 released (score: 19)
- Author: "Bogdan Marinescu" <bogdan.marinescu@...>
- Date: Sat, 1 Nov 2008 23:28:44 +0200
- Hi, eLua is an effort to bring the Lua programming language in the embedded world (MCUs). It is meant to be a complete MCU development environment. It currently runs on a number of ARM variants, as w
- 69. 60kB RAM: Compare indexed string handling to Lua heap handling (score: 14)
- Author: Flyer31 Test <flyer31@...>
- Date: Wed, 24 Nov 2021 22:04:55 +0100
- I just try some test code, to compare my indexed string functions to the standard Lua string functions. Just for those people interested here the results: This is my test project with a Cortex M4 STM
- 70. Re: Looking for Lua Binaries for MSVC 2017 (score: 14)
- Author: Russell Haley <russ.haley@...>
- Date: Wed, 20 Mar 2019 21:50:26 -0700
- On Wed, Mar 20, 2019 at 11:42 AM Russell Haley <russ.haley@gmail.com> wrote: On Wed, Mar 20, 2019 at 8:57 AM Simon Orde <SimonOrde@family-historian.co.uk> wrote: Hi - I have a Visual C++ application
- 71. Re: Looking for Lua Binaries for MSVC 2017 (score: 14)
- Author: Russell Haley <russ.haley@...>
- Date: Wed, 20 Mar 2019 11:42:57 -0700
- On Wed, Mar 20, 2019 at 8:57 AM Simon Orde <SimonOrde@family-historian.co.uk> wrote: Hi - I have a Visual C++ application that supports Lua plugins using a wide variety of Lua DLLs. The previous ver
- 72. [ANN] rpi-gpio 0.1 released (score: 14)
- Author: Thijs Schreijer <thijs@...>
- Date: Tue, 11 Feb 2014 08:55:38 +0000
- List,<o:p></o:p> <o:p> </o:p> The rpi-gpio module is available in the luarocks repository and can be installed (on Raspberry Pi only) using `sudo luarocks install rpi-gpio`.<o:p></o:p> <o:p> </o:p> T
- 73. [ANN] Lunary (update 20121212) (score: 14)
- Author: Jerome Vuarand <jerome.vuarand@...>
- Date: Fri, 14 Dec 2012 16:48:31 +0000
- Hi list, I'm pleased to announce the release of an update for my Lunary library. The primary website is now at: http://piratery.net/lunary/ Here is a little introduction: Lunary is a framework to rea
- 74. Re: selecting sockets and serials (score: 14)
- Author: steve donovan <steve.j.donovan@...>
- Date: Tue, 16 Oct 2012 07:56:19 +0200
- One way would be to use an async serial interface. Winapi has a simple one: http://stevedonovan.github.com/winapi/api.html#open_serial It returns a File object which has a read_async method (backed b
- 75. Re: selecting sockets and serials (score: 14)
- Author: Coda Highland <chighland@...>
- Date: Mon, 15 Oct 2012 16:00:34 -0700
- For the record, Qt manages to succeed at the abstraction rather well, although it does this by abstracting away the select() call too and using callbacks on UNIX as well as Windows. (But it's the sam
- 76. Re: selecting sockets and serials (score: 14)
- Author: William Ahern <william@...>
- Date: Mon, 15 Oct 2012 15:40:03 -0700
- It supports asynchronous completions (i.e. a read or write of a block of data), using a kernel-managed thread pool and callbacks. This is likely why native SSL is implemented differently in Windows,
- 77. Re: selecting sockets and serials (score: 14)
- Author: Sam Roberts <vieuxtech@...>
- Date: Mon, 15 Oct 2012 10:52:48 -0700
- Hello Thijs, Its in Diego's unstable repo: https://github.com/diegonehab/luasocket/tree/unstable I implemented it. We use it. We never use windows. I haven't used windows in more than a decade, but I
- 78. Re: popen in non-blocking mode (score: 14)
- Author: Joseph Stewart <joseph.stewart@...>
- Date: Tue, 6 Dec 2011 16:41:51 -0800
- I don't know how horrible a solution you might think this is, but under Linux and Darwin, I've resorted to adding a "peek to see how many characters are pending" function for file descriptors using t
- 79. Re: Proposal: Virtualization of Filesystem Operations for Lua 5.2. (score: 14)
- Author: Louis Mamakos <louie@...>
- Date: Wed, 2 Nov 2011 16:52:26 -0400
- [?] One of the useful bits of the Tcl I/O interfaces is exposing a set of operations common across different I/O objects and operations, including communication interfaces (e.g., serial ports, networ
- 80. Re: Lua workshop (score: 14)
- Author: Tony Finch <dot@...>
- Date: Fri, 9 Sep 2011 22:38:20 +0100
- I haven't yet escaped Frick, but I would also like to thank Marc and Vera for an excellent workshop, and also the speakers (including Wim) for their wonderful and impressive talks. Here follows my no
Search by
Namazu v2.0.21