tomoyuki yamanaka
04edefd291
Bug fix the export function to the IAR.
...
We added the IAR tool chain to release build.
2016-03-18 15:13:57 +01:00
neilt6
a38c62acd6
[LPC11U68, LPC1549] Improved PwmOut Documentation
...
Improved commenting in pwmout_write(), pwmout_period_us(), and
pwmout_pulsewidth_us().
2016-03-18 15:13:57 +01:00
Toyomasa Watarai
5a4de8b7ef
[LPC824] Add more comments for PwmOut fix
2016-03-18 15:13:57 +01:00
neilt6
b10fec644e
[LPC11U68, LPC1549] Fixed PwmOut SCT Bugs
...
* 0% duty cycle now reads back correctly
* Period & pulse-width changes now take effect immediately if the timer
is halted
2016-03-18 15:13:57 +01:00
Toyomasa Watarai
78f0d7795c
[LPC824] Fixed PwmOut SCT Bugs
...
* Fixed period & pulse-width off-by-one errors
* Fixed 0% and 100% duty cycle output
2016-03-18 15:13:57 +01:00
Brian Daniels
0e9571ce7b
Adding more [NOT_SUPPORTED] messages to tests
2016-03-18 15:13:57 +01:00
0xc0170
a1f2f19ed9
mbed lib revision - 115
2016-03-18 15:13:57 +01:00
0xc0170
b9fa6d078e
Build release - add nucleo f746zg
2016-03-18 15:13:57 +01:00
0xc0170
c30429a602
Targets - fix nucleo f410rb
2016-03-18 15:13:57 +01:00
0xc0170
bc48d73db3
Exporter - progen include dirs fix
...
mbed scripts copy files, therefore file paths are not valid at the moment of ahe project generation.
Therefore checks like os.path.isdir or isfile fail. If include is set to TARGET/FOLDER, this would be
treated as a file, and added to the project workspace. This commit fixes it, it adds dirs only to
include_paths, as it should.
2016-03-18 15:13:57 +01:00
Peter Conheeney
a4586f1f51
disabled i2c slave
2016-03-18 15:13:57 +01:00
adustm
8cd4ee1a8b
[STM32F7 family] fix issue with RTC init
...
the logical test for RTC_ISR_INITS was wronlgy reported from other
STMfamilies.
MBED_16 test works with this modification.
2016-03-18 15:13:57 +01:00
ohagendorf
c8de469a90
[STM32F3xx] bug fix multiple ADC channels using multiple ADC blocks
...
When two or more analogue inputs are initialized on more than one ADC HW block the initialisation fails with:
Cannot initialize ADC
The reason is the reusage of just one ADC_HandleTypeDef for all initializations (in mbed\targets\hal\TARGET_STM\TARGET_STM32F3\analogin_api.c). After the first (successful) ADC initialisation AdcHandle.State is set to HAL_ADC_STATE_READY).
But for another ADC block initialisation the AdcHandle.State has to be reset so that the HAL initialize it (in mbed\targets\cmsis\TARGET_STM\TARGET_STM32F3\stm32f3xx_hal_adc_ex.c line 424). When this state is not reset the HAL returns with an initialization error. And this error induces the above mbed error message.
The error message can be reproduced just with AnalogIn in1(xx); AnalogIn in2(yy); where xx and yy belongs to two different ADC blocks.
2016-03-18 15:13:57 +01:00
Brian Daniels
3f788e6606
Uploading skipped [NOT_SUPPORTED] tests
2016-03-18 15:13:57 +01:00
Brian Daniels
9db9ede4a6
Adding NOT_SUPPORTED errors to tests
2016-03-18 15:13:57 +01:00
bcostm
a6c986e60e
Add STM32L073RZ device
2016-03-18 15:13:57 +01:00
Peter Conheeney
a65fdc9da7
removed empty functions
2016-03-18 15:13:57 +01:00
Peter Conheeney
bf1add1d69
commit of latest changes to arduino support, plus fixes for IOTSS BEID
2016-03-18 15:13:57 +01:00
dbestm
67e94bff7f
[NUCLEO_F446RE] RTC+LSE+init
2016-03-18 15:13:57 +01:00
adustm
c97e05f496
[STM32F7_NUCLEO_F746ZG] Update target files with latest STM32F7Cube_FW version
2016-03-04 14:32:17 +01:00
adustm
49338852ad
[STM32F7_DISCO_F746NG] Update target files with latest STM32F7Cube_FW version
2016-03-04 14:32:00 +01:00
adustm
0b9cc09727
[STM32F7] Update STM32Cube_FW version
2016-03-04 14:28:07 +01:00
Martin Kojtal
01648b2a3b
Merge pull request #1573 from mtkrtk/analogin_patch
...
[Renesas RZ/A1H] Fix analogin peripheral names
2016-02-29 12:32:34 +01:00
mtkrtk
1a3a19bb08
Fix analogin peripheral names
2016-02-29 17:06:32 +09:00
Martin Kojtal
08f4e17d69
Merge pull request #1571 from DC37/master
...
[LPC15XX] Fix Clock Configuration
2016-02-29 08:02:50 +01:00
Martin Kojtal
3209e1806f
Merge pull request #1569 from bridadan/remove-iar-nrf51822
...
Remove IAR from all NRF51822-based targets
2016-02-28 17:48:16 +01:00
Martin Kojtal
73deb0bf92
Merge pull request #1570 from 0xc0170/dev_remove_iar_f7
...
Target - remove cortex-m7 IAR support for 2 targets
2016-02-28 17:38:46 +01:00
Martin Kojtal
8e75bd9d5f
Merge pull request #1568 from bridadan/not-supported-test-result
...
Adding the ability for tests to report they aren't supported on a target
2016-02-28 08:39:21 +01:00
dc37
775c5c9eb2
Fix clock configuration for LPC1549.
...
Datasheet (Table 82) says MSEL bits should be 5, and the PSEL bits should
be 1, for the correct FCCO frequency of 288MHz. The current configuration
has FCCO = 144MHz, which is technically out of spec.
Tested on a custom LPC1549 board with crystal oscillator running at 12MHz.
2016-02-26 19:42:26 -06:00
Martin Kojtal
bd0417cb15
Merge pull request #1520 from adustm/b_b96b_can
...
[STM B96B_F446VE] Add CAN feature
2016-02-26 17:07:15 +00:00
0xc0170
65355e2610
Target - remove cortex-m7 IAR support for 2 targets
...
They will be reenabled once we update IAR version for the release/test
2016-02-26 13:00:49 +00:00
0xc0170
121804a99d
Target - nucleo f746 - progen data aligned to master branch
2016-02-26 11:37:04 +00:00
0xc0170
f3816bdd25
Exporter IAR - nucleo f746 template fix
...
Remove ewd file, fix .ewp file - remove jinja2, to have valid ewp file
2016-02-26 11:37:02 +00:00
adustm
d53f444a6f
[STM32F7 family] revert RTC change in this PR that is due to new platform. It will be done through a separate PR.
2016-02-26 11:36:59 +00:00
adustm
3b3f89294e
[NUCLEO_F746ZG] fix pins and system files after manual and automatic test phase
2016-02-26 11:36:57 +00:00
adustm
1ecd69bd87
[STMF7 family] add more SPI and I2C for the new NUCLEO_F746ZG platform
2016-02-26 11:36:54 +00:00
adustm
d47d87c869
[NUCLEO_F746ZG] 8MHz, not 25
2016-02-26 11:36:52 +00:00
adustm
ddea20a775
[NUCLEO_F746ZG] add exporters files
2016-02-26 11:36:49 +00:00
adustm
0068bb55d2
[NUCLEO_F746ZG] cmsis toolchain files
2016-02-26 11:36:46 +00:00
adustm
809afe7802
[NUCLEO_F746ZG] cmsis files
2016-02-26 11:36:44 +00:00
adustm
252056c17d
[NUCLEO_F746ZG] HAL Files
2016-02-26 11:36:42 +00:00
adustm
a7ed768eef
[NUCLEO_F746ZG] new target
2016-02-26 11:36:40 +00:00
adustm
c6e57e50a0
[NUCLEO_F746ZG] Add new target to hal files
2016-02-26 11:36:37 +00:00
adustm
1535bf2874
[NUCLEO_F746ZG] support rtos for this new target
2016-02-26 11:36:35 +00:00
Martin Kojtal
c00b00481f
Merge pull request #1564 from neilt6/lpc1549-analogin-fix
...
[LPC1549] Improve AnalogIn Performance
2016-02-26 07:43:53 +00:00
Brian Daniels
bee5cad5ef
Remove IAR from all NRF51822-based targets
2016-02-25 18:29:38 -06:00
Brian Daniels
3148d1009e
Adding the ability for tests to report they aren't supported on a target
2016-02-25 16:48:02 -06:00
Martin Kojtal
21389cdd57
Merge pull request #1563 from 0xc0170/fix_iar_rza1h
...
Progen data refactor
2016-02-25 19:48:18 +00:00
Martin Kojtal
6eabf37d20
Exporter - rza iar template clean-up
...
This is not required for progen functionality, but better to have the template
clean from files and defines.
2016-02-25 19:45:41 +00:00
0xc0170
a64119fcbb
Exporters IAR - rza1h template fix
2016-02-25 16:07:30 +00:00