<div dir="ltr">Looks the same...Maybe something wrong i made with task initialization? I took from guide example:<div><div>#include <stdlib.h></div><div>#include <stdio.h></div><div>#include <stdbool.h></div><div><br></div><div>#include <bsp.h></div><div>#include "rtems.h"</div><div><br></div><div>extern rtems_task hello_world(rtems_task_argument argument);</div><div><br></div><div>rtems_task init_tasks(__attribute__((unused)) rtems_task_argument ignored)</div><div>{</div><div><span class="" style="white-space:pre"> </span>rtems_id tid = 0;</div><div><span class="" style="white-space:pre">  </span>rtems_task_create(</div><div><span class="" style="white-space:pre">         </span>rtems_build_name('M', 'I', 'M', 'U'),</div><div><span class="" style="white-space:pre">              </span>1,</div><div><span class="" style="white-space:pre">         </span>RTEMS_MINIMUM_STACK_SIZE,</div><div><span class="" style="white-space:pre">          </span>RTEMS_INTERRUPT_LEVEL(0),</div><div><span class="" style="white-space:pre">          </span>RTEMS_FLOATING_POINT,</div><div><span class="" style="white-space:pre">              </span>&tid);</div><div><br></div><div><span class="" style="white-space:pre">        </span>rtems_task_start(tid, hello_world, 0);</div><div><span class="" style="white-space:pre">     </span>rtems_task_delete(RTEMS_SELF);</div><div>}</div><div><br></div><div>#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER</div><div>#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER</div><div><br></div><div>#define CONFIGURE_RTEMS_INIT_TASKS_TABLE</div><div>#define CONFIGURE_MAXIMUM_TASKS 2</div><div><br></div><div>#define CONFIGURE_INIT_TASK_NAME rtems_build_name('T', 'E', 'S', 'T')</div><div>#define CONFIGURE_INIT</div><div><br></div><div>#include <rtems/confdefs.h></div></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">2016-08-19 17:15 GMT+03:00  <span dir="ltr"><<a href="mailto:groups@chichak.ca" target="_blank">groups@chichak.ca</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><span class="">Strangely, I got my first EXTI interrupt working two days ago.<div><br></div><div>Mine was on pin PB14 and goes low when active. Cube generated a bunch of code:</div><div><br></div><div>first, a file called mxconstants.h with:</div></span><div><span class=""><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="color:#931a68"><b>#define</b></span> SOL2ST_Pin GPIO_PIN_14</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="color:#931a68"><b>#define</b></span> SOL2ST_GPIO_Port GPIOB</div><div><br></div><div>and in gpio.c:</div><div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(78,144,114)"><span style="color:#000000">  </span>/*Configure GPIO pin : PtPin */</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">  GPIO_InitStruct.<span style="color:#0326cc">Pin</span> = SOL2ST_Pin;</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">  GPIO_InitStruct.<span style="color:#0326cc">Mode</span> = GPIO_MODE_IT_FALLING;</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">  GPIO_InitStruct.<span style="color:#0326cc">Pull</span> = GPIO_NOPULL;</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">  HAL_GPIO_Init(SOL2ST_GPIO_<wbr>Port, &GPIO_InitStruct);</div></div><div><br></div><div>in stm32f4xx_it.c:</div><div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(79,118,203)">/**</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(79,118,203)">* <span style="color:#91afcb">@brief</span> This function handles EXTI line[15:10] interrupts.</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(79,118,203)">*/</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="color:#931a68"><b>void</b></span> <b>EXTI15_10_IRQHandler</b>(<span style="color:#931a68"><b>void</b></span>)</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">{</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(78,144,114)"><span style="color:#000000">  </span>/* USER CODE BEGIN EXTI15_10_IRQn 0 */</div><div style="margin:0px;line-height:normal;font-family:'Courier New';min-height:14px"><br></div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(78,144,114)"><span style="color:#000000">  </span>/* USER CODE END EXTI15_10_IRQn 0 */</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">  HAL_GPIO_EXTI_IRQHandler(GPIO_<wbr>PIN_14);</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(78,144,114)"><span style="color:#000000">  </span>/* USER CODE BEGIN EXTI15_10_IRQn 1 */</div><div style="margin:0px;line-height:normal;font-family:'Courier New';min-height:14px"><br></div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(78,144,114)"><span style="color:#000000">  </span>/* USER CODE END EXTI15_10_IRQn 1 */</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">}</div></div><div><br></div><div><br></div><div><br></div><div><br></div><div>For my code, I hook it using:</div><div><br></div></span><div><span class=""><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">     </span>status = <span style="color:#793d93"><b>rtems_interrupt_handler_<wbr>install</b></span>(<span style="text-decoration:underline">EXTI15_10_IRQn</span>, <span style="color:#3933ff">"EXTI"</span>, RTEMS_INTERRUPT_UNIQUE,</div></span><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">                   </span>(<span style="color:#006141">rtems_interrupt_handler</span>) EXTI15_10_IRQHandler, <span style="text-decoration:underline">NULL</span>);</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">   </span><span style="color:#931a68"><b>if</b></span> (status != <span style="color:#0326cc"><i>RTEMS_SUCCESSFUL</i></span>) {</div><span class=""><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(57,51,255)"><span style="color:#000000"><span style="white-space:pre-wrap">              </span></span><span style="color:#793d93"><b>printk</b></span><span style="color:#000000">(</span>“EXTI interrupt install bombed with %d\n”<span style="color:#000000">, status);</span></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">      </span>}</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><br></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><br></div><div style="margin:0px;line-height:normal;font-family:'Courier New'">And catch the interrupt using:</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><br></div><div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="color:#931a68"><b>void</b></span> <b>HAL_GPIO_EXTI_Callback</b>(<span style="color:#006141">uint16_<wbr>t</span> GPIO_Pin) {</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(79,118,203)"> <span style="white-space:pre-wrap">       </span><span style="color:rgb(147,26,104)"><b>if</b></span> (GPIO_Pin == SOL2ST_Pin) {</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(3,38,204)"><span style="white-space:pre-wrap">  </span>}</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">}</div></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><br></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><br></div><div>I hope this helps.</div><div><br></div></span><span class=""><div>Andrei from The Great White North</div></span><div>(<a href="http://embedded.fm/blog" target="_blank">embedded.fm/blog</a>)</div><div><br></div><div><blockquote type="cite"><span class=""><div>On 2016-August-19, at 07:52, Ярослав Лещинский <<a href="mailto:midniwalker@gmail.com" target="_blank">midniwalker@gmail.com</a>> wrote:</div><br></span><div><div class="h5"><div><div dir="ltr">Hi, everyone!<div><br></div><div>My battle with stm32 interrupts continues. Three month ago <span style="font-size:12.8px">Andrei from The Great White North gave me some code advise:</span></div><div><span style="font-size:12.8px"><br></span></div><div><blockquote style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex" class="gmail_quote">In my code I use interrupts for DMA with ADCs, and CAN using the HAL interrupt handler callback structure. <br>In this case, <span style="font-family:'Courier New'">DMA2_Stream2_IRQHandler </span><wbr>calls<span style="font-family:'Courier New'"> </span><span style="font-family:'Courier New'">HAL_DMA_IRQHandler </span>in<span style="font-family:'Courier New'"> st<wbr>m32f4xx_hal_dma.c </span>which figures what caused the interrupt and calls the appropriate callback.<br>In my ADC code I use this:<br><span><span style="white-space:pre-wrap">  </span></span>rtems_status_code<span> status;<br></span><span style="white-space:pre-wrap">      </span><span style="color:rgb(147,26,104)"><b>const</b></span> <span style="color:rgb(147,26,104)"><b>char</b></span> ADC1handlerName[] = <span style="color:rgb(57,51,255)">"AD1r"</span>;<br><span style="white-space:pre-wrap">   </span>status = <span style="color:rgb(121,61,147)"><b>rtems_interrupt_handler_inst<wbr>all</b></span>((<span style="color:rgb(0,97,65)">rtems_vector_number</span>) <span style="text-decoration:underline">DMA2<wbr>_Stream2_IRQn</span>,<br><span style="white-space:pre-wrap">                      </span>ADC2handlerName, RTEMS_INTERRUPT_UNIQUE,<br><span style="white-space:pre-wrap">                      </span>(<span style="color:rgb(0,97,65)">rtems_interrupt_handler</span>) DMA2_Stream2_IRQHandler, <span style="text-decoration:underline">NULL</span>)<wbr>;<br><span style="white-space:pre-wrap">      </span><span style="color:rgb(147,26,104)"><b>if</b></span> (status != <span style="color:rgb(3,38,204)"><i>RTEMS_SUCCESSFUL</i></span>) {<br><span><span style="white-space:pre-wrap">         </span></span><span style="color:rgb(121,61,147)"><b>printk</b></span><span>(</span>"interrupt handler install 2 failed with %d\n"<span>, status);<br></span><span style="white-space:pre-wrap">  </span>}<br><br>Later, I have the interrupt callbacks:<br><span style="color:rgb(147,26,104)"><b>void</b></span> <b>HAL_ADC_ConvCpltCallback</b>(<span style="color:rgb(0,97,65)"><wbr>ADC_HandleTypeDef</span>* hadc) {<br><span><span style="white-space:pre-wrap">    </span></span>rtems_status_code<span> status;<br></span><span style="white-space:pre-wrap">      </span>status = <span style="color:rgb(121,61,147)"><b>rtems_event_send</b></span>(ADCTaskId, RTEMS_EVENT_0);<br><span style="white-space:pre-wrap">     </span><span style="color:rgb(147,26,104)"><b>if</b></span> (status != <span style="color:rgb(3,38,204)"><i>RTEMS_SUCCESSFUL</i></span>) {<br><span><span style="white-space:pre-wrap">         </span></span><span style="color:rgb(121,61,147)"><b>printk</b></span><span>(</span>"complete callback failed with %d"<span>, status);<br></span><span style="white-space:pre-wrap">      </span>}<br>}<br><span style="color:rgb(147,26,104)"><b>void</b></span> <b>HAL_ADC_<wbr>ConvHalfCpltCallback</b>(<span style="color:rgb(0,97,65)">ADC_<wbr>HandleTypeDef</span>* hadc) {<br><span><span style="white-space:pre-wrap">    </span></span>rtems_status_code<span> status;<br></span><span style="white-space:pre-wrap">      </span>status = <span style="color:rgb(121,61,147)"><b>rtems_event_send</b></span>(ADCTaskId, RTEMS_EVENT_1);<br><span style="white-space:pre-wrap">     </span><span style="color:rgb(147,26,104)"><b>if</b></span> (status != <span style="color:rgb(3,38,204)"><i>RTEMS_SUCCESSFUL</i></span>) {<br><span><span style="white-space:pre-wrap">         </span></span><span style="color:rgb(121,61,147)"><b>printk</b></span><span>(</span>"half complete callback failed with %d"<span>, status);<br></span><span style="white-space:pre-wrap"> </span>}<br>}</blockquote></div><div style="font-size:12.8px;margin:0px;font-family:'Courier New'"><br></div><div style="font-size:12.8px;margin:0px;font-family:'Courier New'"><br></div>i was trying the same but only for EXTI driver and no result. I have such code:<br><a href="http://pastebin.com/BZBNPRbg" target="_blank">http://pastebin.com/BZBNPRbg</a><br><br>After flashing, i received in console string "53", when i pushed the button - all stopped, only reset can brought him back to life.<div><br>In C user guide i didn't find any references to  rtems_interrupt_handler_<wbr>install, some info was about rtems_interrupt_catch, but when i try to use this, i received "undefined reference". </div><div><br></div><div>Maybe, someone can help me with that problem?</div><div><br></div><div>Thanks.</div><div><br></div><div>P.S. Sorry for my english.</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">2016-05-17 8:40 GMT+03:00 Ярослав Лещинский <span dir="ltr"><<a href="mailto:midniwalker@gmail.com" target="_blank">midniwalker@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><p dir="ltr">Andrei, thanks! </p>
<div class="gmail_quote">17 мая 2016 г. 8:31 пользователь  <<a href="mailto:groups@chichak.ca" target="_blank">groups@chichak.ca</a>> написал:<div><div><br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><br><div><blockquote type="cite"><div>On 2016-May-16, at 11:10, Ярослав Лещинский <<a href="mailto:midniwalker@gmail.com" target="_blank">midniwalker@gmail.com</a>> wrote:</div><br><div><div dir="ltr">Hello. I'm try to use rtems with my stm board(stm32f4xx). And for now i have one problem: it's about ISR. The thing is, i have my own drivers, which uses isr(exti driver, uart and etc). I read rtems c-user manual properly,  but still can't understand clearly, how i can bring control to rtems signal manager via ASR. I'll be appreciated, if someone can give some advise.<br><div><br></div><div>Yaroslavl.</div></div></div></blockquote><br></div><div>In my code I use interrupts for DMA with ADCs, and CAN using the HAL interrupt handler callback structure. </div><div><br></div><div>In this case, <span style="font-family:'Courier New'">DMA2_Stream2_IRQHandler </span><wbr>calls<span style="font-family:'Courier New'"> </span><span style="font-family:'Courier New'">HAL_DMA_IRQHandler </span>in<span style="font-family:'Courier New'"> st<wbr>m32f4xx_hal_dma.c </span>which figures what caused the interrupt and calls the appropriate callback.</div><div><br></div><div>In my ADC code I use this:</div><div><br></div><div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(0,97,65)"><span><span style="white-space:pre-wrap">  </span></span>rtems_status_code<span> status;</span></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">        </span><span style="color:#931a68"><b>const</b></span> <span style="color:#931a68"><b>char</b></span> ADC1handlerName[] = <span style="color:#3933ff">"AD1r"</span>;</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">      </span>status = <span style="color:#793d93"><b>rtems_interrupt_handler_instal<wbr>l</b></span>((<span style="color:#006141">rtems_vector_number</span>) <span style="text-decoration:underline">DMA2_Stream2_IRQn</span>,</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">                 </span>ADC2handlerName, RTEMS_INTERRUPT_UNIQUE,</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">                       </span>(<span style="color:#006141">rtems_interrupt_handler</span>) DMA2_Stream2_IRQHandler, <span style="text-decoration:underline">NULL</span>);</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">        </span><span style="color:#931a68"><b>if</b></span> (status != <span style="color:#0326cc"><i>RTEMS_SUCCESSFUL</i></span>) {</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(57,51,255)"><span><span style="white-space:pre-wrap">             </span></span><span style="color:#793d93"><b>printk</b></span><span>(</span>"interrupt handler install 2 failed with %d\n"<span>, status);</span></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">   </span>}</div><div><br></div><div><br></div><div>Later, I have the interrupt callbacks:</div><div><br></div></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="color:#931a68"><b>void</b></span> <b>HAL_ADC_ConvCpltCallback</b>(<span style="color:#006141">ADC_H<wbr>andleTypeDef</span>* hadc) {</div><div style="margin:0px;line-height:normal;font-family:'Courier New';min-height:14px"><br></div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(0,97,65)"><span><span style="white-space:pre-wrap">    </span></span>rtems_status_code<span> status;</span></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">        </span>status = <span style="color:#793d93"><b>rtems_event_send</b></span>(ADCTaskId, RTEMS_EVENT_0);</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">       </span><span style="color:#931a68"><b>if</b></span> (status != <span style="color:#0326cc"><i>RTEMS_SUCCESSFUL</i></span>) {</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(57,51,255)"><span><span style="white-space:pre-wrap">             </span></span><span style="color:#793d93"><b>printk</b></span><span>(</span>"complete callback failed with %d"<span>, status);</span></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">       </span>}</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">}</div><div style="margin:0px;line-height:normal;font-family:'Courier New';min-height:14px"><br></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="color:#931a68"><b>void</b></span> <b>HAL_ADC_ConvHalfCpltCallback</b>(<span style="color:#006141">A<wbr>DC_HandleTypeDef</span>* hadc) {</div><div style="margin:0px;line-height:normal;font-family:'Courier New';min-height:14px"><br></div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(0,97,65)"><span><span style="white-space:pre-wrap">       </span></span>rtems_status_code<span> status;</span></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">        </span>status = <span style="color:#793d93"><b>rtems_event_send</b></span>(ADCTaskId, RTEMS_EVENT_1);</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">       </span><span style="color:#931a68"><b>if</b></span> (status != <span style="color:#0326cc"><i>RTEMS_SUCCESSFUL</i></span>) {</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(57,51,255)"><span><span style="white-space:pre-wrap">             </span></span><span style="color:#793d93"><b>printk</b></span><span>(</span>"half complete callback failed with %d"<span>, status);</span></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">  </span>}</div><div style="margin:0px;line-height:normal;font-family:'Courier New'">}</div><div><br></div><div><br></div><div>In my CAN code I use:</div><div><br></div><div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(0,97,65)"><span><span style="white-space:pre-wrap">   </span></span>rtems_status_code<span> status;</span></div><div style="margin:0px;line-height:normal;font-family:'Courier New';min-height:14px"><br></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">     </span>status = <span style="color:#793d93"><b>rtems_interrupt_handler_instal<wbr>l</b></span>(<span style="text-decoration:underline">CAN1_RX0_IRQn</span>, <span style="color:#3933ff">"CANR"</span>, RTEMS_INTERRUPT_UNIQUE,</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">                 </span>(<span style="color:#006141">rtems_interrupt_handler</span>) CAN1_RX0_IRQHandler, <span style="text-decoration:underline">NULL</span>);</div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">    </span><span style="color:#931a68"><b>if</b></span> (status != <span style="color:#0326cc"><i>RTEMS_SUCCESSFUL</i></span>) {</div><div style="margin:0px;line-height:normal;font-family:'Courier New';color:rgb(57,51,255)"><span><span style="white-space:pre-wrap">             </span></span><span style="color:#793d93"><b>printk</b></span><span>(</span>"Pressure task interrupt install bombed with %d\n"<span>, status);</span></div><div style="margin:0px;line-height:normal;font-family:'Courier New'"><span style="white-space:pre-wrap">       </span>}</div></div><div><br></div><div>and use the two call back functions <b style="font-family:'Courier New'">HAL_CAN_RxCpltCallba<wbr>ck</b> and <b style="font-family:'Courier New'">HAL_CAN_ErrorCallback i</b>n the same way as the ADC callbacks.</div><div><br></div><div>The symbol for external interrupt looks like <span style="text-decoration:underline;font-family:'Courier New'">EXTI0_IRQn </span>and the UART would be like <span style="text-decoration:underline;font-family:'Courier New'">USART2_IRQn.</span></div><div><b style="font-family:'Courier New'"><br></b></div><div><b style="font-family:'Courier New'"><br></b></div><div>Andrei from The Great White North.</div><div><br></div><div><br></div><div><b style="font-family:'Courier New'"><br></b></div><div><b style="font-family:'Courier New'"><br></b></div></div></blockquote></div></div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div data-smartmail="gmail_signature"><div dir="ltr"><span><div><p>С уважением, Лещинский Ярослав.</p></div>+79814031224</span></div></div>
</div>
</div></div></div></blockquote></div><br></div></div></div><br>______________________________<wbr>_________________<br>
users mailing list<br>
<a href="mailto:users@rtems.org">users@rtems.org</a><br>
<a href="http://lists.rtems.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.rtems.org/<wbr>mailman/listinfo/users</a><br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><span><div><p>С уважением, Лещинский Ярослав.</p></div>+79814031224</span></div></div>
</div>