annotate packages/devs/serial/cortexm/stm32/current/ChangeLog @ 2984:cd4e37e75648

* src/stm32_serial.c, src/stm32_serial.h: Set the M bit when configuring for 8 data bits + parity bit. [ Bugzilla 1001068 ]
author jld
date Fri, 31 Dec 2010 09:37:26 +0000
parents 74dbf4c3f2e1
children a9a10d06a94b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2984
cd4e37e75648 * src/stm32_serial.c, src/stm32_serial.h: Set the M bit when
jld
parents: 2729
diff changeset
1 2010-12-31 John Dallaway <john@dallaway.org.uk>
cd4e37e75648 * src/stm32_serial.c, src/stm32_serial.h: Set the M bit when
jld
parents: 2729
diff changeset
2
cd4e37e75648 * src/stm32_serial.c, src/stm32_serial.h: Set the M bit when
jld
parents: 2729
diff changeset
3 * src/stm32_serial.c, src/stm32_serial.h: Set the M bit when
cd4e37e75648 * src/stm32_serial.c, src/stm32_serial.h: Set the M bit when
jld
parents: 2729
diff changeset
4 configuring for 8 data bits + parity bit. [ Bugzilla 1001068 ]
cd4e37e75648 * src/stm32_serial.c, src/stm32_serial.h: Set the M bit when
jld
parents: 2729
diff changeset
5
2580
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
6 2008-10-07 Nick Garnett <nickg@ecoscentric.com>
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
7
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
8 * cdl/ser_cortexm_stm32.cdl:
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
9 * src/stm32_serial.h:
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
10 * src/stm32_serial.c:
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
11 New package: serial driver support for ST STM32
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
12 microcontrollers.
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
13
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
14 //===========================================================================
2729
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
15 // ####GPLCOPYRIGHTBEGIN####
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
16 // -------------------------------------------
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
17 // This file is part of eCos, the Embedded Configurable Operating System.
2984
cd4e37e75648 * src/stm32_serial.c, src/stm32_serial.h: Set the M bit when
jld
parents: 2729
diff changeset
18 // Copyright (C) 2008, 2010 Free Software Foundation, Inc.
2580
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
19 //
2729
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
20 // This program is free software; you can redistribute it and/or modify
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
21 // it under the terms of the GNU General Public License as published by
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
22 // the Free Software Foundation; either version 2 or (at your option) any
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
23 // later version.
2580
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
24 //
2729
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
25 // This program is distributed in the hope that it will be useful, but
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
26 // WITHOUT ANY WARRANTY; without even the implied warranty of
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
27 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
28 // General Public License for more details.
2580
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
29 //
2729
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
30 // You should have received a copy of the GNU General Public License
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
31 // along with this program; if not, write to the
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
32 // Free Software Foundation, Inc., 51 Franklin Street,
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
33 // Fifth Floor, Boston, MA 02110-1301, USA.
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
34 // -------------------------------------------
74dbf4c3f2e1 Update all copyright banners to reflect FSF ownership; fix and improve licence text.
jlarmour
parents: 2580
diff changeset
35 // ####GPLCOPYRIGHTEND####
2580
07fc475e1c28 Add Cortex-M architecture HAL, STM32 variant and STM3210E platform HALs.
nickg
parents:
diff changeset
36 //===========================================================================