SPRESENSE commented on issue #16560:
URL: https://github.com/apache/nuttx/issues/16560#issuecomment-3002181052

   @Donny9 
   > @SPRESENSE Please let me know which driver code it is. You can take a look 
at the PR https://github.com/apache/nuttx/pull/16609 to see if it can resolve 
your issue.
   
   For example,
   `nuttx/drivers/modem/alt1250/alt1250.c`
   `nuttx/boards/arm/cxd56xx/drivers/sensors/cxd5610_gnss.c`
   
   ```c
     int fd;
     fd = open("/dev/alt1250", O_RDONLY); // alt1250_open is called
     close(fd);                           // alt1250_close is NOT called
     fd = open("/dev/alt1250", O_RDONLY); // ---> Failed to open file descriptor
   ```  
   
   I applied https://github.com/apache/nuttx/pull/16609, but it is not fixed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to