Masao Hamanaka
f71b0a06c7
Revert "Add the timer value wraparound processing to common wait processing"
...
This reverts commit cd8f65c94b
.
2014-12-11 18:21:43 +09:00
Martin Kojtal
b75dadac6c
Merge pull request #779 from ndelisi/master
...
Y5Design LPC11U35 and NRF51822 - Add New targets
2014-12-11 08:28:29 +00:00
Masao Hamanaka
cd8f65c94b
Add the timer value wraparound processing to common wait processing
...
Timer value wraparound operation had not been considered in common wait process.
By defining the EXPIRE_US non-zero value, wraparound operation is enabled.
The EXPIRE_US will be define the value of each vender-specific.
If EXPIRE_US is 0, the common wait process is same as before.
2014-12-11 14:32:09 +09:00
GustavWi
c3393b80b1
Merge remote-tracking branch 'upstream/master' into iar_mbed
2014-12-10 13:41:46 +01:00
GustavWi
3062999e97
Separated the c data initialization and c++ to call mbed_sdk_init before c++ data. So that the c variables are updated before the c++ objects are initialized. Had to rename the cmain override in RTX_CM_lib.h to __iar_program_start because there can not be two __cmain overrides in the project. The ewps had to be updated to add the linker command --skip_dynamic_initialization which stalls the c++ data init until __iar_dynamic_initialization which is called right after mbed_sdk_init.
2014-12-10 13:40:17 +01:00
Martin Kojtal
2e1ba4df65
Merge pull request #777 from GustavWi/iar_mbed
...
Targets: CMSIS - Fixed linker files for IAR (Ram size on one) and for the rest increased the heap...
2014-12-10 08:49:10 +00:00
sg-
91a77d74cf
With the old logic if Serial::writeable() was called before and/or used to block calls to Serial::putc() it would never write due to EVENT_TXDRDY trailing a write to TXD. Add a dummy write to TXD before pins are connected to the peripheral. This primes the EVENT_TXDRDY to lead future writes rather than trail. Since STOPTX isn't used this seems safe.
2014-12-09 17:48:10 -06:00
Nick DeLisi
a03d3bcd8d
Porting of new target: Added new target to target.py, added header files for PinNames.h and device.h
...
nRF51822 from Nordic Semiconductor
Bluetooth Low-Energy v4.1 compliant - interface to smartphones, tablets
System-on-Chip (SoC) solution - easily transformable into a deployable solution
Drop-in solution for production - no need to design your own antenna
FCC and CE Certified
3x LEDs, 3x Buttons
Powered by interface board or external 3.3V
2014-12-09 14:08:22 -06:00
Nick DeLisi
f382af4aed
Porting of new target: Added new target to target.py, added header files for PinNames.h and device.h. Added linker library.
...
Y5 Design LLC Interface Board
LPC11u35 from NXP
Low Power, ARM(r) Cortex-M0 suitable for a wide range of applications
On-Chip Bootloader - In-System programming (ISP) and in-application programming (IAP)
ROM-based USB drivers - Flash updates via USB supported
SPI, GPIO, i2C, UART, ADC
3x LEDs, Reset Button
3.3V powered via USB or external
USB interface - shipped with USB-A, male connector, pads for Micro female
2014-12-09 13:01:20 -06:00
GustavWi
490dd0ddfe
Fixed linker files (Ram size on one) and for the rest increased the heap and stack size
2014-12-09 18:37:01 +01:00
0xc0170
a36eb12b2f
Targets: Freescale KSDK - extern } syntax error fix
2014-12-09 14:52:17 +00:00
Martin Kojtal
ea49132428
Merge pull request #770 from GustavWi/iar_mbed
...
Fix IAR serial fgets fgetc
Taken from PR #770 :
setbuf(_file, NULL), and std::setvbuf(_file,NULL,_IONBF,NULL) should both give an unbuffered stream (the data is directly written to the input buffer). IAR sets a buffer anyway of size 512 bytes for these calls. Calling setvbuff(_file,buf,_IONBF,NULL) with a buffer that is not a NULL pointer sets the buffer to size one. Which means that as soon as a char is read it is written to the real buffer. If people are interested in looking at this further they can look at the files under ARM/src/dlib: fgets.c, fflush.c, xfrpep.c and xfwprep.c
2014-12-09 14:39:13 +00:00
Martin Kojtal
a96ad0576f
Merge pull request #760 from bcostm/master
...
Targets: NUCLEO_F072RB/F091RC - Remove the call to Systick
2014-12-09 14:31:45 +00:00
Martin Kojtal
0f2b2cdf09
Merge pull request #762 from masaohamanaka/master
...
Targets: RZ_A1H - Fix some bugs about I2C, SPI, Interruptin and add terminal definition of user button.
2014-12-09 14:27:50 +00:00
Martin Kojtal
75673df767
Merge pull request #772 from mbrudevoldlpd/master
...
Add support for mDot with STM32F411RE processor
2014-12-09 14:13:28 +00:00
Martin Kojtal
35ba8d709f
Merge pull request #774 from Sissors/ksdk
...
Targets: K20D50M - Serial baudrate improvements / clk_freqs.h fix
2014-12-09 14:01:54 +00:00
GustavWi
bd6836396b
Moved IAR serial differences to retarget.cpp
2014-12-09 14:30:34 +01:00
Sissors
a6c9b1c40b
[HAL][K20D50M] Serial baudrate improvements / clk_freqs.h fix
...
Three changes, first it fixes:
https://github.com/mbedmicro/mbed/issues/761 (which was reported
slightly wrong because K20 has again different clocking from KLXX for
uarts).
Second it adds mcgpllfll to clk_freqs, which again is different for K20
compared to KLXX .
Finally it adds the fractional baudrate divider for more accurate serial
baudrates.
2014-12-08 21:15:24 +01:00
Michael Brudevold
2f5cbcb1c6
Add support for mDot with STM32F411RE processor
2014-12-08 10:58:25 -06:00
GustavWi
9909e7ca56
Fixed IAR serial fgets fgetc
2014-12-08 13:12:37 +01:00
Masao Hamanaka
0b512e5e6f
Change I2C driver transfer sequence
...
Change I2C driver transfer sequence to go according to H/W manual.
Changed contents are as below.
- Access procedure of ACTBT bit of MR3 register
- Issuance procedure of stop condition
2014-12-08 16:47:28 +09:00
Martin Kojtal
fb0eb349dd
Merge pull request #766 from ohagendorf/reorg_hal_stm324
...
Targets: DISCO_F4xx - add PeripheralPins.c/.h
2014-12-08 07:25:11 +00:00
Martin Kojtal
a17c1dd8f7
Merge pull request #767 from ohagendorf/nucleo_disco_coide
...
STM32xxx: CoIDE/gcc_arm exporter and startup_stm32xx update
2014-12-08 07:24:22 +00:00
Masao Hamanaka
48448527bd
Fix a bug that usticker wait interval is not constant.
...
When read the timer value, it have a potential to read abnormal value.
Because we used 16bit + 16bit cascade timer and read timer count separately.
Changed usticker timer from 16bit + 16bit cascade timer to 32bit timer to fix the bug.
2014-12-08 15:47:49 +09:00
ohagendorf
86647d8387
[DISCO_F4xx] add PeripheralPins.c/.h
2014-12-07 22:25:38 +01:00
ohagendorf
967046e1d6
[STM32xxx] gcc_arm startup files
...
Updates startup files to actual versions of STM32 Cube drivers without
any changes of STs drivers:
- DISCO_F303VC
- DISCO_F334
- NUCLEO_F030
- NUCLEO_F072
- NUCLEO_F302
- NUCLEO_F334
2014-12-07 20:52:49 +01:00
ohagendorf
883b2bc0ce
[STM32xxx] CoIDE exporter and gcc_arm
...
- CoIDE options: wrap main and linker option DiscradUnusedSection=1 was
missing in some targets
- CoIDE options: corrected flash loader config for Nucleo_F030 and
Nucleo_F072
- CoIDE options: corrected memory layout (not used per default but now
it is the same as in linker script)
- gcc linker script: changed the memory size from hex number e.g. 0x2000
to decimal 8K
2014-12-07 20:07:56 +01:00
Masao Hamanaka
e2a8d32343
Add definition of User button(SW0 and SW1)
...
Add definition of User button for users.
2014-12-05 17:37:53 +09:00
Masao Hamanaka
4473a517a8
Fix some bugs that IRQ Edge Interrupt will not operation normal.
...
The bugs of IRQ Edge Interrupt as below.
- Not call a function that was registered in rise, always call a function that was registered in the fall.
- If there are multiple interrupt sources, there is a possibility that end the wrong interrupt processing.
2014-12-05 17:36:52 +09:00
Masao Hamanaka
a36c4462f2
Fix a bug that initialize setting of SPI clock value is not correct.
...
Modify the value as below.
uint16_t mask = 0x000c0; ->
uint16_t mask = 0x000c;
2014-12-05 17:35:49 +09:00
Masao Hamanaka
dca273e167
Fix a bug that I2C driver can not transfer of 1Byte/2Byte.
...
I2C driver was not considered about 1Byte/2Byte transfer.
Add 1Byte/2Byte transfer processing in I2C driver.
2014-12-05 17:31:22 +09:00
Masao Hamanaka
fe61d8c4f7
Fix a fear of bug that a static value will be indefiniteness.
...
There was a function that has the potential to be called with indefiniteness argument.
Modify to not call the function with indefiniteness argument.
2014-12-04 16:03:50 +09:00
Masao Hamanaka
7ea2016953
Fix a bug that I2C freq become fixed 100kHz
...
When I2C read/write, I2C freq ignores the setting of user and it become fixed 100kHz.
Implement change the freq according to the setting of user.
2014-12-04 15:40:38 +09:00
bcostm
2b4edd572b
[NUCLEO_F091RC] Remove call to systick
2014-12-03 15:13:05 +01:00
bcostm
7761378c39
[NUCLEO_F072RB] Remove call to systick
2014-12-03 15:11:58 +01:00
Martin Kojtal
4d1fc24b2e
Merge pull request #757 from GustavWi/iar_mbed
...
RTOS: IAR support for M0, M0+ and M4
2014-12-03 13:07:25 +00:00
GustavWi
6210f92420
IAR RTOS support M0, M0+ and M4
2014-12-03 12:54:06 +01:00
Martin Kojtal
da233f6e5e
Merge pull request #748 from modtronix-com/master
...
Targets: Fix GCC ARM linker script for STM32L1 (STM32L152XE)
2014-12-03 09:33:13 +00:00
Martin Kojtal
74678ea0fc
Merge pull request #755 from masaohamanaka/master
...
Targets: RZ_A1H - Remove External Bus Controller settings
2014-12-03 08:01:27 +00:00
Toyomasa Watarai
600af8d001
[LPC11XX_11CXX] Fix SPI slave issue
...
- Fix a bug reported here:
https://developer.mbed.org/questions/4872/SPISlave-Class-dosnt-work-on-LPC1114/
- Add IOCON settings to enable proper pin functions
- Remove non-busy check in slave_receive() function, since the SSP/SPI
is always in busy state when received a valid data according to the
device user manual
- Add bit mask in spi_slave_read() function
- Add TARGET_LPC1114 pin config in SPI_SLAVE test
- Tested with LPC11U24 SPI master and LPC1114 SPI slave
2014-12-03 14:49:23 +09:00
Masao Hamanaka
c26d902a4d
Remove External Bus Controller settings
...
GR-PEACH does not have any device that connected external address area of RZ_A1H.
The External Bus Controller settings are needless at GR-PEACH.
Terminals settings will be input mode(It is default setting).
2014-12-03 14:19:07 +09:00
Martin Kojtal
a88eaace6b
Merge pull request #753 from dinau/update_disco_f051r8
...
Targets: DISCO_F051R8 - Updated driver files with HAL driver.
2014-12-02 15:36:15 +00:00
Martin Kojtal
f6743c5b50
Merge pull request #751 from bcostm/master
...
Targets: NUCLEO_F303RE - Add new target
2014-12-02 15:35:46 +00:00
dinau
990fc973b5
[DISCO_F051R8]Updated driver files with HAL driver.
2014-12-02 23:41:28 +09:00
bcostm
c1caff2714
[NUCLEO_F303RE] Add target part 2 - hal
2014-12-02 07:50:07 +01:00
bcostm
c1397c596f
[NUCLEO_F303RE] Add target part 1 - cmsis
2014-12-02 07:49:08 +01:00
Masao Hamanaka
27a9f11f8e
Implement peripheral clock determination process to I2C driver
...
When making I2C communication freq, we used a fix value 33.3MHz as peripheral clock as below.
pclk = 33333333 / (2 << count);
But it is not dynamic when system clock is changed.
So, implement peripheral clock determination process.
Peripheral clock will be decided by RZ-A1H system clock mode.
2014-12-01 20:09:11 +09:00
modtronix-com
3a560efa49
Change comment to GCC scripts
...
Change comment to GCC scripts. All GCC linker scrips for STM32L1 have
space for BootRAM defined.
2014-12-01 11:55:43 +11:00
modtronix-com
35efc5aaa1
Updated linker script to reserve space for BootRAM
...
Updated linker script to reserve space for BootRAM at 0x138
2014-12-01 11:47:24 +11:00
modtronix1
be30dcbb0b
Fixed GCC ARM linker script for STM32L1 (STM32L152XE.ld)
...
Fixed Flash and RAM definitions in GCC ARM linker script for STM32L1
(STM32L152XE.ld)
2014-11-29 08:31:53 +11:00
Masao Hamanaka
7290768dc6
Fix a unreadable comments.
...
There were some Japanese comments in I2C source code.
Fixed those comments to be readable.
2014-11-28 16:18:40 +09:00
Masao Hamanaka
1c4831a243
Fixed I2C bug
...
Modified the register settings of communication frequency .
2014-11-28 10:28:45 +09:00
Bogdan Marinescu
e1d38422ed
Merge branch 'newbuild_lib_rev92'
2014-11-27 13:56:11 +00:00
Martin Kojtal
8a3087825b
Merge pull request #744 from masaohamanaka/master
...
Targets: RZ_A1H - Fix RTOS build error (Cortex A)
2014-11-27 03:35:29 -08:00
Martin Kojtal
84b6398edd
Merge pull request #742 from GustavWi/iar_mbed
...
Targets: IAR Fixed NVIC table in ram for stm targets
2014-11-27 03:33:50 -08:00
Masao Hamanaka
cf9fc3c4ac
Add SD function
...
Add SD function and tests for RZ_A1H.
2014-11-27 17:12:57 +09:00
Martin Kojtal
1401e677dd
Merge pull request #743 from ohagendorf/linker_scripts
...
Targets: STM32F0, F3, F4, L053, L152 - GCC ARM linker script reorganisation
2014-11-26 23:42:34 -08:00
GustavWi
0f65920536
IAR Fixed NVIC table in ram for nucleo targets
2014-11-27 08:24:08 +01:00
Olaf Hagendorf
e0d3730a55
[STM_Targets] linker file naming principle
2014-11-26 16:13:37 +01:00
GustavWi
939471cdbd
IAR Fixed NVIC table in ram for stm targets
2014-11-26 16:09:03 +01:00
Olaf Hagendorf
2e3c02f121
[STM32L1xx] linker script reorganisation
2014-11-26 15:07:38 +01:00
Olaf Hagendorf
80ddc6661d
[DISCO_F4xx][NUCLEO_F4xx] linker and startup script reorganisation
2014-11-26 14:29:52 +01:00
Olaf Hagendorf
dda84e6c32
[STM32F03X][STM3207X] linker script reorganizatin
2014-11-26 13:48:58 +01:00
GustavWi
60a7d3755f
IAR Fixed NVIC RAM Vector space for NXP targets
2014-11-26 13:30:49 +01:00
Olaf Hagendorf
087a8eab34
[STM32L053xx] linker script reorganisation
2014-11-26 13:15:09 +01:00
Olaf Hagendorf
0737130e57
[STM32F3xx] linker script reorganisation
2014-11-26 12:31:02 +01:00
Martin Kojtal
c3208fe6f4
Merge pull request #736 from GustavWi/iar_mbed
...
RTOS: IAR Export for CORTEX M3
2014-11-26 08:57:24 +01:00
Martin Kojtal
d9a231862a
Merge pull request #733 from masaohamanaka/master
...
Targets: RZ_A1H - Modified Terminal setting for New GR-PEACH.
2014-11-26 08:53:06 +01:00
Masao Hamanaka
0d99a7d7ad
Delete old version terminal setting code.
...
We confirmed that user never use the old version GR-PEACH.
So, we deleted old version terminal setting code.
2014-11-26 13:44:01 +09:00
Bogdan Marinescu
d8f6c47dde
Bumped build number
2014-11-25 13:48:38 +00:00
Martin Kojtal
4e89d3c771
Merge pull request #739 from xiongyihui/master
...
Targets: ARCH_MAX & DISCO_F407VG - Add SystemCoreClockUpdate and HAL_Init to mbed_sdk_init
2014-11-25 12:30:32 +01:00
Yihui Xiong
9bf1247ff9
[ARCH_MAX & DISCO_F407VG] add SystemCoreClockUpdate and HAL_Init to
...
mbed_sdk_init
HAL_Init is needed by Arch MAX to setup RTC with internal clock
2014-11-25 16:48:14 +08:00
Martin Kojtal
d5afb47760
Merge pull request #711 from ohagendorf/_exit-or-exit
...
mbed: Name of exit function in exit.c for GCC ARM (_exit)
2014-11-25 08:21:11 +01:00
Mike Fiore
8c56483c43
[mbed][MTS_DRAGONFLY_F411RE] fix D2 pin mapping, remove PWM_OUT from PinNames.h
2014-11-24 11:30:37 -06:00
Mike Fiore
dbe1af7787
[cmsis][MTS_DRAGONFLY_F411RE] set USE_PLL_HSE_EXTC to 0, causing problems with IAR export and we have no external clock option
2014-11-24 09:43:18 -06:00
bcostm
ea50eb3512
[NUCLEO_L053R8] Correct issue with Travis build
2014-11-24 16:20:26 +01:00
GustavWi
d03da0cd30
removed comments and fixed USB_RAM section
2014-11-24 14:28:08 +01:00
GustavWi
c2de05e882
Fixed LPC1768 NVIC placement space in RAM
2014-11-24 14:16:32 +01:00
bcostm
53f92133dc
[NUCLEO_L0/L1] Add PeripheralPins files
2014-11-24 12:36:39 +01:00
bcostm
afd167f734
[NUCLEO_F4] Add note on optional pins
2014-11-24 12:35:46 +01:00
bcostm
04dc0c7a24
[NUCLEO_F3] Add PeripheralPins files
2014-11-24 12:34:35 +01:00
bcostm
f62073e179
[NUCLEO_F103RB] Add PeripheralPins files
2014-11-24 12:33:15 +01:00
bcostm
60e0d1431e
[NUCLEO_F0] Add PeripheralPins files
2014-11-24 12:32:02 +01:00
GustavWi
092828ce33
Added IAR Export RTOS CORTEX M3
2014-11-24 10:58:08 +01:00
Martin Kojtal
814740f86e
Merge pull request #720 from bcostm/master
...
Targets: NUCLEOs - Improvement of gpio_irq hal
2014-11-24 08:15:36 +01:00
ohagendorf
4d04aba235
[NUCLEO_F072RB] exporter for gcc and coide
2014-11-22 14:56:30 +01:00
ohagendorf
caf42f946c
[NUCLEO_F030R8] exporter for gcc and coide
2014-11-22 12:18:31 +01:00
Masao Hamanaka
59f686bbc1
Modified Terminal setting for New GR-PEACH.
...
Modified Terminal setting of Ethernet and LED PIN for New GR-PEACH.
2014-11-21 13:47:46 +09:00
Mike Fiore
365df95cf6
[mbed][MTS_DRAGONFLY_F411RE] fix pin names for spi to external flash
2014-11-20 14:43:10 -06:00
Mike Fiore
4196364088
[mbed][MTS_DRAGONFLY_F411RE] change wrong PLL members to correct values from ST Cube code
2014-11-20 12:36:01 -06:00
Mike Fiore
bb4c5f4ab5
[mbed][MTS_DRAGONFLY_F411RE] remove unnecessary VIMPINNAMES file
2014-11-20 11:06:20 -06:00
Mike Fiore
ac11414116
[mbed][MTS_DRAGONFLY_F411RE] add RADIO_TX/RX pins, correct reversed TX/RX pins for uart6
2014-11-20 09:57:13 -06:00
Mike Fiore
ffab541ac9
[mbed][MTS_DRAGONFLY_F411RE] clean up PinNames.h
2014-11-20 07:52:48 -06:00
Mike Fiore
451914a276
[mbed][MTS_DRAGONFLY_F411RE] fix stdio uart decl, fix D3 pin decl, change blinky test main.cpp back to original
2014-11-20 07:43:42 -06:00
Yihui Xiong
c6f0c3b14b
Revert "[NUCLEO_F103RB] update SystemCoreClock after changing clock settings"
2014-11-20 19:19:47 +08:00
Michael Brudevold
3e1aac36e1
Correct pin names for serial rx/tx
2014-11-19 14:52:49 -06:00
Martin Kojtal
f364b76d2f
Merge pull request #703 from masaohamanaka/master
...
Targets: RZ_A1H - Fixed a bug of serial interrupt
2014-11-19 00:59:43 -08:00
0xc0170
dcfa675e50
Merge branch 'NUCLEO_L152RE_exporter' of github.com:ohagendorf/mbed into ohagendorf-NUCLEO_L152RE_exporter
...
Conflicts:
workspace_tools/build_travis.py
workspace_tools/export/coide.py
2014-11-19 08:43:14 +00:00
Martin Kojtal
7ff3e68a96
Merge pull request #714 from ohagendorf/NUCLEO_F302R8_exporter_2
...
Tools: NUCLEO_F302R8 - exporters for gcc_arm and coide
2014-11-19 00:28:37 -08:00
Martin Kojtal
5ad32eaa60
Merge pull request #715 from kshoji/nRF51822_serial_31250
...
Targets: nRF51822 - Add support for Serial 31250 baud (for legacy MIDI)
2014-11-19 00:26:52 -08:00
Martin Kojtal
12b3c601ea
Merge pull request #721 from GustavWi/iar_mbed
...
Tools: IAR export for some NXP Platforms
2014-11-19 00:23:12 -08:00
Yihui Xiong
72e2d393a6
[NUCLEO_F103RB] update SystemCoreClock after changing clock settings
2014-11-19 13:51:12 +08:00
kshoji
d05c1d4950
nrf51_bitfields.h reverted.
2014-11-19 14:47:01 +09:00
GustavWi
849c8742f0
IAR export LPC4088
2014-11-18 16:19:26 +01:00
GustavWi
299749f143
IAR export LPC810 + 812
2014-11-18 16:09:38 +01:00
GustavWi
82523de2c6
IAR export LPC1549
2014-11-18 16:01:34 +01:00
GustavWi
d13714fb07
IAR export for LPC11XX and 11CXX
2014-11-18 15:49:23 +01:00
GustavWi
b3656be310
Added IAR export for LPC11UXX
2014-11-18 14:54:40 +01:00
bcostm
20177c912b
[NUCLEOs] Improvement of gpio_irq hal
...
Now it is possible to have multiple interrupt pins on EXTI vectors.
Example:
EXTI0 -> PA_0 or PB_0 or PC_0, ... only 1 pin
EXTI5_9 -> PA_5 and PA_6 and PB_7 and PC_8 and PC_9: up to 5 pins
EXTI10_15: PA_10 and PB_11 and PB_12, ... : up to 6 pins
2014-11-18 12:28:30 +01:00
Martin Kojtal
34eccbf435
Merge pull request #716 from bcostm/master
...
Targets: NUCLEO_F4xx - Add PeripheralPins.c/h file
2014-11-18 02:15:57 -08:00
GustavWi
5311efaae6
Added IAR export for LPC11U68.
2014-11-18 11:15:49 +01:00
Masao Hamanaka
a210914f42
Fixed some function's bugs
...
Fixed some bugs and modified mmu setting.
Fixed functions as below
- analog in
- i2c
- interruptin
2014-11-18 13:54:39 +09:00
bcostm
ff85a88b7b
[NUCLEO_F4] Add PeripheralPins.c/h file
...
Move all pinouts into these 2 files.
2014-11-17 10:01:44 +01:00
kshoji
3dcb6a5b25
nRF51822 - Add support for Serial 31250 baud (for Legacy MIDI)
2014-11-17 12:56:40 +09:00
ohagendorf
42c20128a6
[NUCLEO_F302R8] exporters for gcc_arm and coide
...
Adds exporter for gcc_arm and coide for the NUCLEO_F302R8.
2014-11-16 18:24:57 +01:00
ohagendorf
f37a45d3b5
Name of exit function in exit.c
...
Change the name of the exit function to _exit as suggested in clib
documenation for all gcc_arm toolchains (GCC_ARM and CoIDE)
2014-11-16 17:43:42 +01:00
ohagendorf
5c36e9544f
[NUCLEO_L152RE] exporters for gcc_arm and coide
2014-11-16 17:10:47 +01:00
vincent rabbit
2e18da7419
[mbed][MTS_DRAGONFLY_F411RE] added platform support files and dirs built gcc executable NOT working
2014-11-14 11:29:46 -06:00
Martin Kojtal
570c25d255
Merge pull request #705 from 0xc0170/fix_issue#704
...
Targets: K64F - UART_NUM fix in a condition
2014-11-14 07:46:28 -08:00
0xc0170
81254a0e44
K64F - UART_NUM fix in a condition
2014-11-14 15:21:39 +00:00
Masao Hamanaka
cde105eaa5
Fixed a bug of serial interrupt
...
I fixed a bug of serial interrupt as below.
Serial TX/RX interrupt was not occur when TX/RX end.
2014-11-14 21:20:46 +09:00
bcostm
ac6b5cb06b
[NUCLEO_F0] Align hal files
2014-11-14 11:01:47 +01:00
bcostm
23761ee73e
[NUCLEO_F3] Align hal files
2014-11-14 11:00:10 +01:00
bcostm
c05cb2e726
[NUCLEO_F4] Align hal files
2014-11-14 10:58:57 +01:00
0xc0170
67346ec8d6
Merge branch 'reorder_f3xx_2' of github.com:ohagendorf/mbed into ohagendorf-reorder_f3xx_2
...
Conflicts:
workspace_tools/export/coide.py
2014-11-14 08:56:20 +00:00
Martin Kojtal
dffeedc96e
Merge pull request #695 from autopulated/testsforall
...
Targets: add USBTX and USBRX pin definitions for targets that don't provide them
2014-11-14 00:48:06 -08:00
Martin Kojtal
b5ba59050b
Merge pull request #697 from bcostm/master
...
Targets: NUCLEOs - Style corrections in hal files (astyle)
2014-11-14 00:47:19 -08:00
Masao Hamanaka
32a7f019c0
Modify *.sct to shrink binary file more
2014-11-14 10:32:46 +09:00
Masao Hamanaka
60d5fb780e
Modify mmu setting, scatter, sf boot loader to shrink binary file
2014-11-14 09:01:34 +09:00
bcostm
6d1da4ef47
[NUCLEO_L053R8] Typo corrections (astyle)
2014-11-13 16:46:25 +01:00
bcostm
df479e409a
[NUCLEO_F411RE] Typo corrections (astyle)
2014-11-13 16:45:36 +01:00
bcostm
40f3f7e27c
[NUCLEO_F401RE] Typo corrections (astyle)
2014-11-13 16:44:50 +01:00
bcostm
307f641d14
[NUCLEO_F334R8] Typo corrections (astyle)
2014-11-13 16:44:05 +01:00
bcostm
2fb9552913
[NUCLEO_F302R8] Typo corrections (astyle)
2014-11-13 16:43:09 +01:00
bcostm
285977d068
[NUCLEO_F103RB] Typo corrections (astyle)
2014-11-13 16:42:32 +01:00
bcostm
9d02d52994
[NUCLEO_F072RB] Typo corrections (astyle)
2014-11-13 16:41:28 +01:00
bcostm
17e61f58d6
[NUCLEO_F030R8] Typo corrections (astyle)
2014-11-13 16:40:37 +01:00
James Crosby
fa2e957179
also add USBTX=USBRX=NC definitions for LPC13XX
2014-11-13 14:13:42 +00:00
James Crosby
69cd573545
add USBTX and USBRX pin definitions for targets that don't provide them (so that tests compile), but set to NC
2014-11-13 11:24:36 +00:00
Martin Kojtal
08c85ef136
Merge pull request #680 from mbrudevoldlpd/master
...
Platform: Add support for MultiTech mDot module
2014-11-13 08:21:18 +00:00
Michael Brudevold
ae8d818927
Rename mDot to mDot F405RG to allow for variation in processor
2014-11-12 16:21:13 -06:00
Olaf Hagendorf
56af0e1621
[TARGET_DISCO_F303] reorder structure - part5
...
Add missing -Wl,--wrap,main linker option so that __wrap_main is called.
This function was ignored in gcc_arm and coide projects before.
2014-11-12 22:20:38 +01:00
Michael Brudevold
dcaa34a9d6
Fix whitespace per coding standard
2014-11-12 10:16:29 -06:00
Olaf Hagendorf
691f34097a
[TARGET_DISCO_F303] reorder structure part4
...
Remove change of wrong target and add it to the wright one. Additionally
changing the CoIDE template file to the correct mcu.
2014-11-12 14:31:57 +01:00
GustavWi
857d59a6c0
Added IAR export support for NUCLEO F103RB
2014-11-12 13:31:30 +01:00
Martin Kojtal
6737282994
Merge pull request #679 from toyowata/master
...
Targets: LPC11U68 - Fix GPIO init for specific pins
2014-11-12 09:13:13 +00:00
Martin Kojtal
dbd8b3bab4
Merge pull request #686 from GustavWi/iar_mbed
...
Toolchain: IAR - lpc1347 startup fix
2014-11-12 09:12:50 +00:00
Martin Kojtal
6fd59778d6
Merge pull request #684 from Sissors/ksdk
...
Targets: KSDK - Fix ACK/NACK received inverted (issue #661 )
2014-11-12 08:45:48 +00:00
Sissors
d3e2cacff3
[HAL][KSDK] Fixed ACK/NACK received inverted ( https://github.com/mbedmicro/mbed/issues/661 )
...
As reported by Geremia G
(http://developer.mbed.org/forum/bugs-suggestions/topic/5220/ )
2014-11-11 20:32:07 +01:00
GustavWi
f3ad604ebc
Fixed reset handler for LPC1347 IAR
2014-11-11 14:43:17 +01:00