RE: Help me understand file open/close behaviours?

2023-03-09 Thread Tim Hardisty
I was wrong. My app was mishandling console input :( >-Original Message- >From: Tim Hardisty >Sent: 09 March 2023 15:34 >To: dev@nuttx.apache.org >Subject: RE: Help me understand file open/close behaviours? > >Guess what - this behaviour is only on Master. Spent

RE: Help me understand file open/close behaviours?

2023-03-09 Thread Tim Hardisty
age- >From: Tim Hardisty >Sent: 08 March 2023 17:37 >To: dev@nuttx.apache.org >Subject: RE: Help me understand file open/close behaviours? > >>From: Gregory Nutt >>Sent: 03 March 2023 19:03 >> >>On 3/3/2023 12:56 PM, Gregory Nutt wrote: >>> On 3/3/20

RE: Help me understand file open/close behaviours?

2023-03-08 Thread Tim Hardisty
>From: Gregory Nutt >Sent: 03 March 2023 19:03 > >On 3/3/2023 12:56 PM, Gregory Nutt wrote: >> On 3/3/2023 12:36 PM, Nathan Hartman wrote: >>> On Fri, Mar 3, 2023 at 1:07 PM Tim Hardisty wrote: - I have enabled CONFIG_SIGKILL_ACTION to allow me to ctrl-c from the console if the app is

RE: Help me understand file open/close behaviours?

2023-03-03 Thread Tim Hardisty
>From: Gregory Nutt >Sent: 03 March 2023 19:03 >To: dev@nuttx.apache.org >Subject: Re: Help me understand file open/close behaviours? > >On 3/3/2023 12:56 PM, Gregory Nutt wrote: >> On 3/3/2023 12:36 PM, Nathan Hartman wrote: >>> On Fri, Mar 3, 2023 at 1:07 PM Ti

Re: Help me understand file open/close behaviours?

2023-03-03 Thread Gregory Nutt
On 3/3/2023 12:56 PM, Gregory Nutt wrote: On 3/3/2023 12:36 PM, Nathan Hartman wrote: On Fri, Mar 3, 2023 at 1:07 PM Tim Hardisty wrote: The bug I thought I had in a driver I'm developing (well, one of them!) appears to be related to file closing. - I have a related example-type app I'm

RE: Help me understand file open/close behaviours?

2023-03-03 Thread Tim Hardisty
>From: Nathan Hartman >Sent: 03 March 2023 18:36 >To: dev@nuttx.apache.org >Subject: Re: Help me understand file open/close behaviours? > >On Fri, Mar 3, 2023 at 1:07 PM Tim Hardisty wrote: >> The bug I thought I had in a driver I'm developing (well, one of them!) >ap

Re: Help me understand file open/close behaviours?

2023-03-03 Thread Gregory Nutt
On 3/3/2023 12:36 PM, Nathan Hartman wrote: On Fri, Mar 3, 2023 at 1:07 PM Tim Hardisty wrote: The bug I thought I had in a driver I'm developing (well, one of them!) appears to be related to file closing. - I have a related example-type app I'm using to exercise and check the driver. It

Re: Help me understand file open/close behaviours?

2023-03-03 Thread Nathan Hartman
On Fri, Mar 3, 2023 at 1:07 PM Tim Hardisty wrote: > The bug I thought I had in a driver I'm developing (well, one of them!) > appears to be related to file closing. > > - I have a related example-type app I'm using to exercise and check the > driver. It opens 2 "files" (O-RDONLY) to read data

Help me understand file open/close behaviours?

2023-03-03 Thread Tim Hardisty
Hi all, The bug I thought I had in a driver I'm developing (well, one of them!) appears to be related to file closing. - I have a related example-type app I'm using to exercise and check the driver. It opens 2 "files" (O-RDONLY) to read data from the device driver - I have enabled