acassis commented on code in PR #17344:
URL: https://github.com/apache/nuttx/pull/17344#discussion_r2541602623


##########
drivers/eeprom/Kconfig:
##########
@@ -30,6 +30,41 @@ config EE25XX_FREQUENCY
        int "SPI EEPROM SCK frequency"
        default 10000000
        depends on SPI_EE_25XX
+       ---help---
+               Default SPI bus frequency, it can be overwritten at runtime 
using the
+               EEPIOC_SETSPEED ioctl. See eeprom/eeprom.h.
+
+config EE25XX_START_DELAY
+       int "SPI start delay"
+       depends on SPI_DELAY_CONTROL
+       range 0 1000000
+       default 5000
+       ---help---
+               The delay between CS active and first CLK. In ns.
+
+config EE25XX_STOP_DELAY
+       int "SPI stop delay"
+       depends on SPI_DELAY_CONTROL
+       range 0 1000000
+       default 5000
+       ---help---
+               The delay between last CLK and CS inactive. In ns.
+
+config EE25XX_CS_DELAY
+       int "SPI cs delay"
+       depends on SPI_DELAY_CONTROL
+       range 0 1000000
+       default 5000
+       ---help---
+               The delay between CS inactive and CS active again. In ns.
+
+config EE25XX_IFDELAY
+       int "SPI if delay"

Review Comment:
   ```suggestion
        int "SPI interface delay"



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to