GUIDINGLI commented on code in PR #13410:
URL: https://github.com/apache/nuttx/pull/13410#discussion_r1759720151


##########
boards/arm/stm32/olimex-stm32-p407/scripts/memory.ld:
##########
@@ -92,7 +92,7 @@ MEMORY
 
   /* 112Kb of contiguous SRAM */
 
-  ksram (rwx)      : ORIGIN = 0x20000000, LENGTH = 8K
-  usram (rwx)      : ORIGIN = 0x20002000, LENGTH = 8K
-  xsram (rwx)      : ORIGIN = 0x20008000, LENGTH = 96K
+  ksram (rwx)      : ORIGIN = 0x20000000, LENGTH = 16K
+  usram (rwx)      : ORIGIN = 0x20004000, LENGTH = 16K
+  xsram (rwx)      : ORIGIN = 0x20008000, LENGTH = 80K

Review Comment:
   Don't add a configure except it really need.
   
   If you concern the size.
   We have next patch for this:
   ```
   typedef struct sigevent
   {
     uint8_t      sigev_notify; /* Notification method: SIGEV_SIGNAL, 
SIGEV_NONE, or SIGEV_THREAD */
     uint8_t      sigev_signo;  /* Notification signal */
     union sigval sigev_value;  /* Data passed with notification */
   
     union
       {
   #ifdef CONFIG_SIG_EVTHREAD
         struct
           {
             /* Notification function */
   
             sigev_notify_function_t _function;
   
             /* Notification attributes (not used) */
   
             FAR struct pthread_attr_s *_attribute;
           } _sigev_thread;
   #endif
         pid_t _tid; /* ID of thread to signal */
       } _sigev_un;
   } sigevent_t;
   ```



-- 
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