Re: esp32 / pcnt / rotary encoder

2023-02-18 Thread Alan C. Assis
Hi Tomek, Please take a look: https://github.com/apache/nuttx/blob/master/arch/xtensa/src/esp32/esp32_qencoder.c It was tested with common rotary encoders (i.e. those used on 3D Printers to select items on UI menu). I didn't test it at high frequencies, but according with this thread

Re: Article: NuttX for PinePhone: Exploring USB

2023-02-18 Thread Alan C. Assis
Hi Lup, Very nice post! Adding this USB Controller on NuttX will allow to use many other chips that use same IP. There is also some modem modules with this Quectel chip at aliexpress, i.e.: https://aliexpress.com/item/1005004508534864.html BR, Alan On 2/18/23, Lee, Lup Yuen wrote: > We're

Re: GESO: Green Sea Turtles

2023-02-17 Thread Alan C
get to the sea. They are collected and transported for release beyond the breakers to circumvent the initial carnage by predators. Alan C On 17-Feb-23 08:00 PM, Daniel J. Matyola wrote: That is true, as I understand it, of other species of sea turtles. Here in Maui, at least, the green sea turtles f

Re: GESO: Green Sea Turtles

2023-02-16 Thread Alan C
Nice. I have never seen that. I thought they only came ashore at night to lay eggs. Alan C On 17-Feb-23 09:24 AM, Daniel J. Matyola wrote: Went to the local windsurfing beach yesterday, but the wind conditions were not favorable for that activity. Nevertheless, I enjoyed watching the green

Re: Maximum file descriptor number in select()?

2023-02-16 Thread Alan C. Assis
Hi Kikichi-san, In the past NuttX used to have a config to define the max number of file descriptors/file streams. Now it is allocated dynamically. I think the max number of FDs should be board and application dependent. So, maybe in this case is better to start with a smaller "reasonable"

Re: OT GESO (20): Birding in Sikkim

2023-02-13 Thread Alan C
en found a S/H one yet. Alan C On 14-Feb-23 05:03 AM, Subash Jeyan wrote: a GESO with photos of birding in sikkim: https://somethingfeathered.wordpress.com/2023/02/14/birding-in-sikkim/ do let me know what you think, regards, subash -- %(real_name)s Pentax-Discuss Mail List To unsubscribe

Re: Bug? in stm32_sdio.c

2023-02-11 Thread Alan C. Assis
Hi Pierre-Noel, Good catch! Although the right file is arch/arm/src/stm32/stm32_sdio.c, not boards/... This file has this possible BUG since when it was added into NuttX and it works as you can see here: https://www.youtube.com/watch?v=H28t4RbOXqI Probably someone using SDIO for other

Re: RNDIS

2023-02-11 Thread Alan C. Assis
Hi Tim, Thank you for confirming! I noticed that Mr. Xiang Xiao already closed the issue as well. BR, Alan On 2/11/23, Tim Hardisty wrote: >> On 28/01/2023, 14:11, "Alan C. Assis" wrote: > >> If there are inconsistencies, they are not specify of RNDIS drive

Re: Updated February PUG

2023-02-11 Thread Alan C
A great image, Jan.  BTW, there are actually two cubs! Alan C On 11-Feb-23 05:33 PM, li...@dfsee.com wrote: Thanks Ann, Henk and Ralf for the nice words, and of course Brian for updating the PIUG with my image On 11 Feb 2023, at 15:01, ann sanfedele wrote: I agree, Henk - just realised

Re: IR camera conversion

2023-02-08 Thread Alan C
Mark Cassino had success with that. He stlll occasionally posts IR photos on FB. Alan C On 08-Feb-23 08:27 PM, Ralf R Radermacher wrote: Am 08.02.23 um 18:09 schrieb John Sessoms: I'm thinking about having one of my older digital bodies (K20D) converted for Infra-Red photography. Has anyone

Re: Video: NuttX for PinePhone

2023-02-07 Thread Alan C. Assis
Very nice video Lup! Now it is easy to everyone to test it. BR, Alan On 2/7/23, Lee, Lup Yuen wrote: > If we're curious how we download and boot NuttX on PinePhone, this video > explains the steps... > > Watch on YouTube: https://youtu.be/kGI_0yK1vws > > Download the video (1.4 GB): >

Re: Price of K3-III dropping in Europe

2023-02-05 Thread Alan C
SAR 36000 = 19000 Euros in SA. Alan C On 05-Feb-23 03:06 PM, Ralf R Radermacher wrote: Am 05.02.23 um 13:03 schrieb Henk Terhell: Still 2000 euro in The Netherlands. Aachen is just a few hundred meters from the Netherlands. :-) Ralf -- Ralf R. Radermacher  -  Köln/Cologne, Germany Blog

Re: AI 'Art'

2023-02-05 Thread Alan C
So, I suppose if you have access to unlimited AI generated images then anything can be created by combining them in the desired way? Paint, brushes, spatulas & easels will become obsolete! Alan C On 05-Feb-23 01:34 PM, Henk Terhell wrote: Following our recent discussion on AI gener

[OT] Coral board a nice board to run TFLite Micro (and awaiting for NuttX on it)

2023-02-04 Thread Alan C. Assis
FYI: https://www.hackster.io/news/google-opens-pre-orders-for-the-coral-dev-board-micro-its-first-microcontroller-development-board-73664dd48266

Re: PESO: Bird of Paradise

2023-02-02 Thread Alan C
Very nice capture, Dan. Good to see a bit of SA! That particular flower, known to gardeners world wide as the "Bird of Paradise", is the South African indigenous species Strelitzia Reginae. Alan C On 03-Feb-23 07:17 AM, Daniel J. Matyola wrote: >From the garden in our resort

Re: Including Lua scripts on filesystem

2023-02-02 Thread Alan C. Assis
pps. >>> >>> >> Of course, all we discuss so far is the user space feature, not related >> to >> the kernel. >> >> Thats why I think nsh should not be responsible for too much. >>> >> nsh equals init pus sh. One improvement is split in

Re: Including Lua scripts on filesystem

2023-02-02 Thread Alan C. Assis
ep when you use nuttx on real hardware > that is not an unmodified commercial devboard. > > Sebastien > > Le 02/02/2023 à 15:35, Alan C. Assis a écrit : >> It should be nice to have a simple logic to let users to use ROMFS. >> >> Currently everyone needs to duplicat

Re: Including Lua scripts on filesystem

2023-02-02 Thread Alan C. Assis
It should be nice to have a simple logic to let users to use ROMFS. Currently everyone needs to duplicate it in their own code/application. I'm thinking something like apps/romfiles/ where people just put the files that they want to be in the ROM and it will be included automatically, instead

Re: Including Lua scripts on filesystem

2023-02-02 Thread Alan C. Assis
Hi Russel, If all you need is to copy some file.lua to your board, then an alternative is using TMPFS and transfer the file using zmodem. Few day ago I created a video tutorial about it: https://www.youtube.com/watch?v=Ne3SZZrwL9c BR, Alan On 2/2/23, Russell Haley wrote: > I am mistaken. I

Re: Article: NuttX for PinePhone: LVGL Terminal for NSH Shell

2023-02-02 Thread Alan C. Assis
Hi Lup, Very nice article! Kudos!!! Is it possible to modify the demo to type direclty inside the "LVGL terminal" screen? Did you test PinePhone nxterm too? BR, Alan On 2/2/23, Lee, Lup Yuen wrote: > Now we can run NuttX Console Apps on PinePhone, without a Serial Cable! > > This article

Re: Serial driver: No BREAK support?

2023-01-31 Thread Alan C. Assis
as a substitute for the ASCII CONTROL-C character." BR, Alan On 1/30/23, Alan C. Assis wrote: > Hi Nathan, > > Some UART drivers implement TIOCSBRK instead. > > I was thinking we had a discussion about serial break here in the > mailing list, but I couldn't find it. > &g

Re: Serial driver: No BREAK support?

2023-01-30 Thread Alan C. Assis
Hi Nathan, Some UART drivers implement TIOCSBRK instead. I was thinking we had a discussion about serial break here in the mailing list, but I couldn't find it. As I recall from that discussion (I think it was in the company, not here in the list), there are different types and meanings of

Re: NuttX PTP Support

2023-01-30 Thread Alan C. Assis
f my boards…. >> >>> On Jan 27, 2023, at 11:12 AM, Alan C. Assis wrote: >>> >>> Yes, it is supported: serial and network (ethernet and WiFi). >>> >>>>> On 1/27/23, James Dougherty wrote: >>>> Outstanding! >>>> >

Re: OS 11 --> Weird problem

2023-01-29 Thread Alan C
I'm way ahead of you guys - 22 Windows on my house, all functional! Alan C On 29-Jan-23 12:11 PM, Toine wrote: Using windows 11 from day 1. everything is working fine and never seen any lockups, bluescreens etc. It looks like epson is supporting win11 for the v500. On Sun, 29 Jan 2023 at 10

Re: Simulator, NOR flash file system, MTD

2023-01-28 Thread Alan C. Assis
>>> LittleFs, etc.) to work with an MTD device that is backed by file MTD >>> with the file residing in the HostFS mount. >>> >>> Also note that if you follow that approach and use SmartFS, I also wrote >>> a FUSE filesystem for Linux that allows it to nativ

Re: RNDIS

2023-01-28 Thread Alan C. Assis
soft have not said they will deprecate it as yet, so there is > still a use for it until an NCM driver is available. > > On 28/01/2023, 14:11, "Alan C. Assis" <mailto:acas...@gmail.com>> wrote: > > > Ok, I re-opened it. > > > If there are inconsisten

Re: RNDIS

2023-01-28 Thread Alan C. Assis
cated > > If I can get RNDIS working for me, that is the time to close it. > > On 28/01/2023, 13:45, "Alan C. Assis" <mailto:acas...@gmail.com>> wrote: > > > Hi Tim, > > > I just confirmed that it still working fine and I'll close your issue. &

Re: RNDIS

2023-01-28 Thread Alan C. Assis
Hi Tim, I just confirmed that it still working fine and I'll close your issue. This is a step-by-step process that everyone can follow to get it working: Configure your board: = $ ./tools/configure.sh stm32f4discovery:rndis Compile NuttX to your board:

Re: Simulator, NOR flash file system, MTD

2023-01-27 Thread Alan C. Assis
Hi Alexander, Some time ago Ken Pettit wrote a SmartFS simulator. If I'm not wrong it could be used with NuttX SIM(ulator). BR, Alan On 1/27/23, Alexander Oryshchenko wrote: > What is the easiest way to use NOR- FFS (SmartFs, Spiffs, LittleFs...) over > host's file? > May be somebody knows

Re: NuttX PTP Support

2023-01-27 Thread Alan C. Assis
Yes, it is supported: serial and network (ethernet and WiFi). On 1/27/23, James Dougherty wrote: > Outstanding! > > Serial and Network… > > Thank you > >> On Jan 27, 2023, at 10:01 AM, Alan C. Assis wrote: >> >> Hi James, >> >> ESP32 is

Re: RNDIS

2023-01-27 Thread Alan C. Assis
read, perhaps it *will* be deprecated... > > Modprobe does suggest that rndis_host is, indeed, present so, in that case, > RNDIS doesn't work on Linux either! > >>-Original Message- >>From: Alan C. Assis >>Sent: 27 January 2023 16:12 >>To: dev@nuttx.apache.org >>S

Re: NuttX PTP Support

2023-01-27 Thread Alan C. Assis
Hi James, ESP32 is supported, which features do you need? BR, Alan On 1/27/23, James Dougherty wrote: > I haven’t looked at it yet, but I am working on ESP32; is WROOM supported > in master or just the S3/C3? > > > On Fri, Jan 27, 2023 at 4:23 AM Robert Alexa > wrote: > >> Hi all, >> >>

Re: RNDIS

2023-01-27 Thread Alan C. Assis
Strange, it still available here: $ sudo modprobe rndis_host BR, Alan On 1/27/23, Tim Hardisty wrote: > Seems that RNDIS on Linux is deprecated as it's deemed insecure, so I need > to use CDC-ECM for Linux (which works), but there's no generic driver for > that in Windows (unless anyone knows

Re: [OT] Who is contribution with NuttX?

2023-01-27 Thread Alan C. Assis
Thank you Tim! On 1/27/23, Tim Hardisty wrote: >>Tim Hardisty = 15 > > That be me :) > > JT Innovations Ltd > > Or JTi for short. > >

[OT] Who is contribution with NuttX?

2023-01-27 Thread Alan C. Assis
Hey NuttXers, I decided to list which companies are contributing most with NuttX, but during my research I couldn't to map some individual contributors to their companies. So, I don't know if Oki Minabe is an individual contributor or a contributor from Sony. Same to CV-Bowen, but I'm 99% sure

Re: PING

2023-01-26 Thread Alan C. Assis
R: arp_wait failed: -110 > > Looks like arp is failing for some reason but I have no idea, despite having > compared defconfig files that have RNDIS enabled :( > >>-Original Message- >>From: Alan C. Assis >>Sent: 26 January 2023 12:21 >>To: dev@nuttx.apache.o

Re: St-Link Issue

2023-01-26 Thread Alan C. Assis
Hi Russel, Did you try to update the firmware version for the new board that is not working? Maybe ST changed the UART pins connected to virtual console (/dev/ttyACM0) from a board to other. BR, Alan On 1/26/23, Russell Haley wrote: > Hi there community, > > I have access to a couple of

Re: PING

2023-01-26 Thread Alan C. Assis
in why the PING app isn't available: > any thoughts on that? > > > On 25/01/2023, 23:12, "Alan C. Assis" <mailto:acas...@gmail.com>> wrote: > >> When you had double about your configuration, the best option is >> looking some working board config

Re: PING

2023-01-25 Thread Alan C. Assis
Hi Tim, When you had double about your configuration, the best option is looking some working board config example. In this case take a look at boards/stm32f4discovery/configs/rndis/defconfig BR, Alan On 1/25/23, Tim Hardisty wrote: > I did turn the firewall off, just in case, but still no

Re: Something for Henk

2023-01-23 Thread Alan C
Some shoes! Probably not mushroom inside. Alan C On 23-Jan-23 07:46 PM, Henk Terhell wrote: With the help of canva AI I'm now learning how to grow mushrooms in my shoes. Here my first attempt: https://www.flickr.com/gp/mxer/uGd989QuV8 Henk Op ma 23 jan. 2023 om 12:13 schreef Henk Terhell

e-mail woes

2023-01-22 Thread Alan C
d some local tests with no difficulties so things seem to be OK with my ISP unless they somehow block anything to the PDML from time to time but more likely there is a problem somewhere down the line. Perhaps one of you boffins have a suggestion? Alan C -- %(real_name)s Pentax-Discuss Mail List T

Test

2023-01-22 Thread Alan C
-- %(real_name)s Pentax-Discuss Mail List To unsubscribe send an email to pdml-le...@pdml.net to UNSUBSCRIBE from the PDML, please visit the link directly above and follow the directions.

Re: Something for Henk

2023-01-22 Thread Alan C
Well said, Godfrey. I well remember a heated argument I had with a fellow teacher along those lines many years ago. He was adamant that photography could never be art. One could even argue about the type of brush & paint used! And what if the "artist" had to wear glasses? Alan

Re: Something for Henk

2023-01-22 Thread Alan C
Well said, Godfrey. I well remember a heated argument I had with a fellow teacher along those lines many years ago. He was adamant that photography could never be art. One could even argue about the type of brush & paint used! And what if the "artist" had to wear glasses? Ala

Re: Something for Henk

2023-01-22 Thread Alan C
Well said, Godfrey. I well remember a heated argument I had with a fellow teacher along those lines many years ago. He was adamant that photography could never be art. One could even argue about the type of brush & paint used! And what if the "artist" had to wear glasses? Ala

Re: Something for Henk

2023-01-22 Thread Alan C
Well said, G I well remember a heated argument with a fellow teacher along those lines many years ago. He was adamant that photography could never be art. One could even argue about the type of brush & paint used & whether the artist wore glasses. Alan C -- %(real_name)s Pentax-Disc

Re: Something for Henk

2023-01-22 Thread Alan C
Well said, Godfrey. I well remember a heated argument I had with a fellow teacher along those lines many years ago. He was adamant that photography could never be art. One could even argue about the type of brush & paint used! And what if the "artist" had to wear glasses? Ala

Re: USB host - HID keyboard and other things

2023-01-19 Thread Alan C. Assis
get RNDIS working – so many random Kconfig settings needed > it seems. > > From: Gregory Nutt > Date: Thursday, 19 January 2023 at 19:18 > To: dev@nuttx.apache.org > Subject: Re: USB host - HID keyboard and other things > On 1/19/2023 1:12 PM, Alan C. Assis wrote: > >

Re: USB host - HID keyboard and other things

2023-01-19 Thread Alan C. Assis
On 1/19/23, Gregory Nutt wrote: > On 1/19/2023 1:12 PM, Alan C. Assis wrote: >> I think the currently NuttX USB Keyboard driver needs to be extended >> to support more keyboards. Do do that someone need to inspect the USB >> communication and figure out what is going on. &

Re: RFC: Keeping board documentation in the boards and in the website at same time

2023-01-19 Thread Alan C. Assis
ges in that folder. > > On Wed, Jan 18, 2023, 2:51 PM Alan C. Assis wrote: > >> Hi Everyone, >> >> As some have noticed some boards still have their README.txt in their >> original places: >> >> boards/arm/stm32/stm32f4discovery/README.txt >> boards

Re: USB host - HID keyboard and other things

2023-01-19 Thread Alan C. Assis
Hi Tim, AFAIK the current USB HID keyboard implementation existent on NuttX doesn't work with all keyboards. I don't know details about it, so let me share what I know so far: A NuttX user reported some years ago that he test USB Keyboard on STM32 boards and got it working. He was using the

RFC: Keeping board documentation in the boards and in the website at same time

2023-01-18 Thread Alan C. Assis
Hi Everyone, As some have noticed some boards still have their README.txt in their original places: boards/arm/stm32/stm32f4discovery/README.txt boards/arm/rp2040/raspberrypi-pico/README.txt boards/x86_64/intel64/qemu-intel64/README.txt boards/risc-v/qemu-rv/rv-virt/README.txt

Re: First time birding

2023-01-17 Thread Alan C
Common all over South Africa too, even in remote camps of the Kruger Park. The ones here escaped from a sailing sip en-route to Aus. Can't imagine why they were being taken there. Alan C On 18-Jan-23 12:20 AM, mike wilson wrote: I called it British because it is found all over the British

Re: How to automatically kill all children threads when the main thread die

2023-01-16 Thread Alan C. Assis
gt;> >> The question is confusing because it asks about killing other threads >> (aka >> pthreads) when the main (task) exits. But the example shows only tasks >> (main threads). >> >> https://cwiki.apache.org/confluence/display/NUTTX/Tasks+vs.+Threads+FAQ >&g

Re: PESO: Kaikoura Beach #2

2023-01-16 Thread Alan C
Just after the couple were taken by a sea monster? I agree with Ann - leave them as they are - very moody. Alan C On 16-Jan-23 10:39 AM, David Mann wrote: Another pic taken just after the one I posted yesterday. http://gallery.multi.net.nz/photo/1195/#peso Pentax K5ii, DA16-45 F/4 Cheers

How to automatically kill all children threads when the main thread die

2023-01-15 Thread Alan C. Assis
Dear NuttXers, I want to know if there are some hidden configuration that forces all children to die when the father task die. Currently only teh main task dies: nsh> family & nsh> ps PID GROUP PRI POLICY TYPENPX STATEEVENT SIGMASK STACK COMMAND ... 2727 100 RR

Re: Just Before Sunset--Take 2

2023-01-13 Thread Alan C
Looks like work to me. Who cleans up all the leaves? Alan C On 12-Jan-23 06:39 PM, Rick Womer wrote: I repeated the process with SmugMug from the beginning, and it gave me a different URL: https://rickwomer.smugmug.com/2023/January-2023/Jan-2023-Miscellany/ <https://rickwomer.smugmug.

Re: Article: NuttX for PinePhone: Touch Panel

2023-01-12 Thread Alan C. Assis
Hahaha, creating drivers for NuttX is very addictive! :-D On 1/12/23, Bernd Walter wrote: > On Thu, Jan 12, 2023 at 09:27:38PM -0300, Alan C. Assis wrote: >> Very nice Lup! Kudos!! >> >> There are many low cost tooch screen powered by GT911 for sale at >> Aliexpress

Re: Article: NuttX for PinePhone: Touch Panel

2023-01-12 Thread Alan C. Assis
Very nice Lup! Kudos!! There are many low cost tooch screen powered by GT911 for sale at Aliexpress, this is a great addiction to NuttX! Thank you again for this amazing work Lup! BR, Alan On 1/12/23, Lee, Lup Yuen wrote: > Yep the NuttX Driver is actually designed for Goodix GT911. But it

Re: [VOTE] Apache NuttX 12.0.0 RC1 release

2023-01-11 Thread Alan C. Assis
+1 Please see tests below: ESP32-DEVKITC: == Compiler: - $ xtensa-esp32-elf-gcc -v Using built-in specs. COLLECT_GCC=xtensa-esp32-elf-gcc COLLECT_LTO_WRAPPER=/usr/local/bin/../libexec/gcc/xtensa-esp32-elf/8.4.0/lto-wrapper Target: xtensa-esp32-elf Configured with:

Re: How to use spi_bitbang to drive SD card

2023-01-11 Thread Alan C. Assis
Hi Prelude On 1/10/23, prelude wrote: > I have now turned on the debug option, started the development board and > reported the following error: > > k210_sdinitialize: Initializing bit bang SPI for the MMC/SD slot > spi_setmode: mode=0 > k210_sdinitialize: Successfully initialized bit bang SPI

Re: How to use spi_bitbang to drive SD card

2023-01-10 Thread Alan C. Assis
Hi prelude, Please enable the debug (ERR, WARN e INFO) for MMC/SDCard: [*] Memory Card Driver Debug Features [*] Memory Card Driver Error Output [*] Memory Card Driver Warnings Output [*] Memory Card Driver Informational Output It could give us more details about the issue. BR,

Re: Fun in the rain

2023-01-10 Thread Alan C
What Paul said. Long range mind reading? Alan C On 10-Jan-23 06:55 PM, Paul Sorenson wrote: Larry - Glad to see/hear you're OK so far.  Is your house set back from the river a little more than some of those on the other side? Felton was specifically mentioned in articles on CA flooding

Re: Did someone try to use FTP client on NuttX recently?

2023-01-07 Thread Alan C. Assis
nt ":::192.168.0.2", "150 Ok to send data." Sat Jan 7 13:40:46 2023 [pid 158190] [ftpclient] OK UPLOAD: Client ":::192.168.0.2", "/files/test.bin", 1048576 bytes, 186.42Kbyte/sec Sat Jan 7 13:40:46 2023 [pid 158190] [ftpclient] FTP response: Client &quo

Re: Did someone try to use FTP client on NuttX recently?

2023-01-07 Thread Alan C. Assis
76 bytes, 2.38Kbyte/sec Sat Jan 7 13:22:37 2023 [pid 132850] [ftpclient] FTP response: Client ":::192.168.0.2", "226 Transfer complete." The network speed for ESP32 seems a little bit low, but it is another chapter. BR, Alan On 1/7/23, Alan C. Assis wrote: > Hi Everyon

Did someone try to use FTP client on NuttX recently?

2023-01-07 Thread Alan C. Assis
Hi Everyone, I noticed that ftpc example is not working correctly, at least here in my board. So before opening an issue on github (case it is some issue with my board config) I want to ask if someone tested the ftpc recently and if it worked for you? First thing I noticed is the "nfc" prompt

[OT] Barracuda App Server ported to NuttX

2023-01-05 Thread Alan C. Assis
Hi Guys, Wilfred from RealTimeLogic posted on our Discord channel: "I have just ported the Barracuda App Server to NuttX and I wonder if anyone would be interested in testing this server. The ready to use NuttX port provides a web-based Lua REPL. The ready-to-run application server package packs

Re: GESO: Corn, Oklahoma

2023-01-04 Thread Alan C
Well, there you are then! Alan C On 04-Jan-23 04:30 PM, coll...@brendemuehl.net wrote: That’s the town’s name. 73024 -- %(real_name)s Pentax-Discuss Mail List To unsubscribe send an email to pdml-le...@pdml.net to UNSUBSCRIBE from the PDML, please visit the link directly above and follow

Re: GESO: Corn, Oklahoma

2023-01-04 Thread Alan C
Nice shots, Collin, But what s the CORN connection? Alan C On 03-Jan-23 10:09 PM, coll...@brendemuehl.net wrote: Just a selection of shots the last two days. https://www.flickr.com/photos/101533246@N02/albums/72177720304945576 -- %(real_name)s Pentax-Discuss Mail List To unsubscribe send

Re: Version when building the latest NuttX

2023-01-04 Thread Alan C. Assis
Hi Jernej, I faced similar issue some time all, I don't remember all the details but in some special cases the script get the wrong information. I think it happens when we do git reset --hard to some commit from old release. I cloned again and it got fixed. BR, Alan On Wednesday, January 4,

GESO: Best of 2022

2023-01-02 Thread Alan C
Inspired by Larry's efforts, I decided to post mine. With all the difficuties we have endured in SA, photography & outings have been very much on the back burner. Roll on 2023. https://www.flickr.com/photos/wisselstroom/albums/72177720304928465 Alan C -- %(real_name)s Pentax-Discuss Mail

Re: best of 2022 gallery

2023-01-02 Thread Alan C
Nevertheless,  a very commendable 11.  2022 was a very difficult year. Alan C On 02-Jan-23 09:30 AM, Larry Colen wrote: Not a very productive year, only 11 candidates total in my quarterly best of, didn't even bother to trim them down: https://www.flickr.com/photos/ellarsee/albums

Re: CI Documentation is failing

2023-01-02 Thread Alan C. Assis
On 1/2/23, Brennan Ashton wrote: > On Mon, Jan 2, 2023, 4:46 AM Alan C. Assis wrote: > >> Thank you very much Brennan, >> >> I was afraid to change the hash because I wasn't sure that the file >> wasn't corrupted/infected. >> >> How did you check it w

Re: CI Documentation is failing

2023-01-02 Thread Alan C. Assis
apache/nuttx/pull/8018 > > On Fri, Dec 30, 2022 at 11:53 AM Alan C. Assis wrote: >> >> Thank you very much Brennan! >> >> BR, >> >> Alan >> >> On 12/30/22, Brennan Ashton wrote: >> > Alan, I mentioned this earlier in another issue. I

Re: Article: NuttX for PinePhone: What is it?

2023-01-02 Thread Alan C. Assis
Very nice work Lup! It should be nice to see about it on big media like Hackaday. BR, Alan On 1/1/23, Lee, Lup Yuen wrote: > People often ask why we're porting NuttX to Pine64 PinePhone (Arm64 / > Allwinner A64 SoC). So I wrote an FAQ about NuttX for PinePhone. Have an > Awesome 2023

Re: OT GESO New Year's day fun

2023-01-01 Thread Alan C
Gracious, Larry, stay safe. Is that the house with the collapsed deck in a couple of the shots? Alan C On 02-Jan-23 03:13 AM, Larry Colen wrote: I spent yesterday dealing with the rain, according to my rain guage we got 6.16", so 15+ cm. The river in my backyard rose about 15' (5m)

LVGL updated to V8, please test your board

2023-01-01 Thread Alan C. Assis
Hi NuttXers, I just merged the LVGL V8 PR from Xiaomi: https://github.com/apache/nuttx-apps/pull/1341 https://github.com/apache/nuttx/pull/7268 Please test it on your board to confirm it still working for you. I tested here on SIMulator and everything worked as expected. BR, Alan

Re: Syslog file max Size wrap issue

2023-01-01 Thread Alan C. Assis
Hi Simon, Happy new year! Do you know if that Rotating Log was working on previous releases (i.e 10.3) ? Probably some recent modification broke it. I think we don't have a Rotation Log test, we need some Software Qualification Testing when doing a software release. I just opened an Issue

Re: PESO: January Pug reject #2

2022-12-31 Thread Alan C
That sort of bridge, even worse, is common in Africa. Surprised yours has lasted so long. Alan C On 31-Dec-22 08:00 AM, Daniel J. Matyola wrote: As I noted in reference to Reject #1, in searching for an image to submit for the January PUG, I came across three that brought back pleasant

Re: PESO: January PUG Reject #1

2022-12-31 Thread Alan C
Impressive. The one you finally selected must really be something! On 31-Dec-22 07:32 AM, Daniel J. Matyola wrote: In searching for an image to submit for the January PUG, I came across three that brought back pleasant memories. I chose one for the PUG, but decided to use the others as PESOs,

Re: HNY

2022-12-31 Thread Alan C
Thanks Dave & the same there. I offered my K110D to my daughter but she says she will rather use her 'phone. Changing times! Alan C On 31-Dec-22 08:19 PM, David J Brooks wrote: Happy New Year one and all. I did my last good deed of 2022 today, one of our camera group's grandsons was loo

Re: PESO: De Kersttram

2022-12-31 Thread Alan C
Great stuff, Ralf. Lot's of photographic opportunities around there. When you mention Dunkirk, all I imagine in "beach". Alan C On 25-Dec-22 02:19 PM, Ralf R Radermacher wrote: For a number of reasons we have yet again not been able to spend the end of the year at Dunkirk. Instead,

Re: GESO (8) - Shadows

2022-12-31 Thread Alan C
Interesting images, Rick. I don't seem to notice things like that. I need to try harder! Alan C On 31-Dec-22 04:18 AM, Rick Womer wrote: I had an errand to run this morning, and I took my camera along. The shadows were striking, especially on the two college campuses I crossed. https

Re: CI Documentation is failing

2022-12-30 Thread Alan C. Assis
holidays. > > --Brennan > > On Fri, Dec 30, 2022, 10:58 AM Alan C. Assis wrote: > >> Dear busy NuttXers, >> >> As you probably knows the CI is failing, it is reporting that the HASH >> is not matching. >> >> I don't know if someone changed the packet v

CI Documentation is failing

2022-12-30 Thread Alan C. Assis
Dear busy NuttXers, As you probably knows the CI is failing, it is reporting that the HASH is not matching. I don't know if someone changed the packet version and forgot to update the hash or if the files were infected. For those who really care about this project, please helps to fix it (then

Re: Podling Nuttx Report Reminder - January 2023

2022-12-28 Thread Alan C. Assis
I just changed the NuttX status to graduated: http://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings.xml BR, Alan On 12/26/22, Nathan Hartman wrote: > On Mon, Dec 26, 2022 at 9:44 AM Calvin Kirs wrote: > >> On Mon, Dec 26, 2022 at 10:36 PM Nathan Hartman >> wrote: >> > >> >

Re: Article: NuttX for PinePhone: LCD Panel

2022-12-28 Thread Alan C. Assis
n Hartman > wrote: > > > On Tue, Dec 27, 2022 at 8:06 PM Alan C. Assis wrote: > > > > > Very nice Lup! Kudos!!! > > > > > > I think we need a drivers/video/logo/ like the Linux kernel to display > > > the NuttX logo. > > > > > >

Re: Article: NuttX for PinePhone: LCD Panel

2022-12-27 Thread Alan C. Assis
Very nice Lup! Kudos!!! I think we need a drivers/video/logo/ like the Linux kernel to display the NuttX logo. ;-) BR, Alan On 12/27/22, Lee, Lup Yuen wrote: > NuttX Mainline now boots with a Test Pattern on Pine64 PinePhone! (Arm64 / > Allwinner A64 SoC) > > This article explains what's

Re: [apache/nuttx] Create branch for ch32v (PR #7978)

2022-12-26 Thread Alan C. Assis
Hi Robert, On 12/26/22, Robert Lipe wrote: >> >> Thank you for sharing this CH32V30x porting repository. >> > > For anyone following along, this was an accident. The "real" repo (to which > I'm about to commit more stuff) is at > https://github.com/robertlipe/incubator-nuttx > > >> I think the

Re: [apache/nuttx] Create branch for ch32v (PR #7978)

2022-12-26 Thread Alan C. Assis
Hi Robert, Thank you for sharing this CH32V30x porting repository. I think the right way to handle the GPIO is like STM32 and other arches do, not inside the menuconfig. Some time ago someone suggested using menuconfig to select the function of each pin of the MCU, but although the idea is

Re: [VOTE] Apache NuttX 12.0.0 RC0 release

2022-12-25 Thread Alan C. Assis
Hi Tomek, I think the idea of NuttX 12.0.0 is to be the first NuttX release as Apache TLP. But I agree it is better to have minor releases before moving to a major release. Just a major release for year or each two years sound more consistent, this is similar the way that Linux kernel does.

Re: Poll in 3 parts

2022-12-22 Thread Alan C
(a) ME-Super (b) FA 100/2.8 (c) Quite happy with Pentax. Alan C On 22-Dec-22 09:48 PM, coll...@brendemuehl.net wrote: Ya, ya, I know it’s been done a million times.\ But I wanted to add a comparative twist to it. What has been your (a) Favorite 35mm camera\ (b) The sharpest 35mm you ever

Re: Article: NuttX for PinePhone: Display Engine

2022-12-22 Thread Alan C. Assis
We all that need to talk you, not only for that driver, but also for these amazing documentation! Thank you Lup! On 12/22/22, Lee, Lup Yuen wrote: > NuttX Mainline now supports the Display Engine for Allwinner A64 SoC > (Arm64). Many thanks to my patient reviewers for wading through a thousand

Re: Peso: Straight Razor

2022-12-19 Thread Alan C
Sudwala On 19-Dec-22 11:19 AM, mike wilson wrote: On 19/12/2022 08:27 Alan C wrote: On 19-Dec-22 10:08 AM, mike wilson wrote:  Maybe family artefacts could be a PUG theme? Like Australopithecus Africanus? You have one of those in the attic somewhere? -- %(real_name)s Pentax-Discuss

Re: Peso: Straight Razor

2022-12-19 Thread Alan C
On 19-Dec-22 10:08 AM, mike wilson wrote:  Maybe family artefacts could be a PUG theme? Like Australopithecus Africanus? Alan C -- %(real_name)s Pentax-Discuss Mail List To unsubscribe send an email to pdml-le...@pdml.net to UNSUBSCRIBE from the PDML, please visit the link directly above

Re: Happy birthday Ann!

2022-12-12 Thread Alan C
They say the first person who will live to 200 is already alive! Alan C On 12-Dec-22 04:55 PM, mike wilson wrote: That's my plan as well. My grandfather lived to 90 and my father is currently 96 not out, so just maybe there is a chance. On 12/12/2022 13:26 ann sanfedele wrote: Glad

Re: Port to M5Stamp-C3U

2022-12-09 Thread Alan C. Assis
Hi Sebastien, On 12/9/22, Sebastien Lorquet wrote: > Hi, > > As an introduction to the RISCV, I would like to use NuttX on my M5stamp > C3U, which I can get for 8 dollars at a local store. > > https://docs.m5stack.com/en/core/stamp_c3u > This M5stamp C3U uses that ESP32-C3 that is already

Re: NuttX PTP Support

2022-12-06 Thread Alan C. Assis
Hi Markus, I don't know if there is someone already using PTP with NuttX (probably since NuttX is used by many industrial automation companies). I think the first step should be add a PTP daemon for NuttX. The ptpd could be a good candidate: https://github.com/ptpd/ptpd BR, Alan On 12/5/22,

Re: NUTTX definition

2022-12-05 Thread Alan C. Assis
Hi Roberto, You can use __NuttX__ BR, Alan On 12/5/22, Roberto Bucher wrote: > Hi > > Which is the "#ifdef" that I can use to check if I've been compiling for > NuttX (like for example #ifdef _WIN32...)? > > Thanks in advance > > Roberto > >

Re: PESO, SIMBY

2022-12-04 Thread Alan C
Interesting shots, Larry. Still a lot of green leaves though. Looks quite tropical actually. Alan C On 05-Dec-22 05:20 AM, Larry Colen wrote: On the positive I remembered that the fall colors in my back yard have been nice enough to take out my camera. On the not so positive I didn't

<    1   2   3   4   5   6   7   8   9   10   >