Re: [OpenOCD-devel] [PATCH]: dc370ed doc: update RTOS section, add 'mqx' info

2015-03-10 Thread Marian Cingel
Hello, I have found the problem. SYSTEM_TD member of kernel_data has type TD_STRUCT and not (as I would expect) TD_STRUCT_PTR. SYSTEM_TD member exists before TD_LIST and because TD_STRUCT has different size depending on configuration it makes impossible to use static offset. I think there might be

Re: [OpenOCD-devel] [PATCH] rtos: fix crash on auto detection

2015-03-10 Thread Andreas Färber
Hi, Am 09.03.2015 um 18:48 schrieb Richard Braun: > The detection framework assumes rtos->symbols is dynamically allocated, > an assumption that the ChibiOS variant breaks by providing a raw statically > allocated symbol list. You forgot to sign off your patch. :) Cheers, Andreas > --- > src/r

Re: [OpenOCD-devel] [PATCH]: dc370ed doc: update RTOS section, add 'mqx' info

2015-03-10 Thread Richard Braun
On Tue, Mar 10, 2015 at 08:36:18PM +0100, Marian Cingel wrote: > Hello, > > Yes, I had used MQX 4.1.1. > The offsets of structs (kernel_data_struct, td_struct) I'm using are > stable - they haven't changed > for years. It should work the same as with old MQX 3.7 as with new MQX/SDK > 1.1. > If th

[OpenOCD-devel] [PATCH]: b1b5199 tcl/board/twr-k60f120m: remove useless flash bank 0 definition

2015-03-10 Thread gerrit
This is an automated email from Gerrit. Paul Fertser (fercer...@gmail.com) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/2595 -- gerrit commit b1b519944c50ced5e7b9b0487f0698ebfa454f38 Author: Paul Fertser Date: Tue Mar 10 22:27:16 2015 +0300 tcl

[OpenOCD-devel] [PATCH]: 439cdea flash/nor/kinetis: do not attempt mass-erase in place of a bank erase

2015-03-10 Thread gerrit
This is an automated email from Gerrit. Paul Fertser (fercer...@gmail.com) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/2594 -- gerrit commit 439cdea9b885a677c1262b7d4a5691351c993060 Author: Paul Fertser Date: Tue Mar 10 22:22:36 2015 +0300 fla

[OpenOCD-devel] LPC810 Sector not prepared when wrtting images just shorter then sector boundary.

2015-03-10 Thread SevenW
I get an error code 9 when flashing a LPC810. Looking into the code it seems to be related to the size of the image being flashed. Code is in src/flash/nor/lpc2000.c. Flashing happens in chunks of 256 bytes: lpc2000_info->cmd51_max_buffer [1] = 256; /* smallest MCU in the series, LPC810, has

[OpenOCD-devel] [PATCH]: adc714d nrf51: refine and extend known devices table

2015-03-10 Thread gerrit
This is an automated email from Gerrit. Peter Bigot (p...@pabigot.com) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/2593 -- gerrit commit adc714d87f6ab39e7d2b544c572c2b6bc403aa65 Author: Peter A. Bigot Date: Tue Mar 10 08:44:28 2015 -0500 nrf51

Re: [OpenOCD-devel] [PATCH]: dc370ed doc: update RTOS section, add 'mqx' info

2015-03-10 Thread Richard Braun
On Mon, Mar 09, 2015 at 06:56:12PM +, ger...@openocd.zylin.com wrote: > Author: Marian Cingel > Date: Mon Mar 9 19:52:29 2015 +0100 > > doc: update RTOS section, add 'mqx' info Hello, I'm working on an MQX application and willing to include MQX support in our development environment.