aboutsummaryrefslogtreecommitdiff
path: root/src/platforms/native/platform.c
AgeCommit message (Collapse)Author
2013-10-05Added internal pull-up to PWR_BR.Marc Singer
o Prevent probe from inadvertently powering target. If PWR_BR is allowed to float, the gate on Q1 (blackmagic_mini) will tend to be close enough to zero to turn the transistor on. We activate the internal pull-up on this IO pin to force the transistor off.
2013-10-05FIX: u{8,16,32} -> uint{8,16,32}_t to be compatible with new libraryBuFran
The use of u8, u16, u32 has been deprecated in libopencm3. Update it with standard uint8_t, uint16_t, uint32_t types
2013-06-19native: Enable hard SRST signal.Gareth McMullin
2013-06-17Fix trailing whitespace everywhere.Gareth McMullin
2013-04-16native: Fix up deprecated warnings.Gareth McMullin
2013-04-14stm32f1/stm32f4: fix hardware CRC calculationPaul Fertser
This was real-life tested on stm32f1 hardware including computation for odd-sized ranges. Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2013-01-21cdcacm: move non-constant parts to platform.[hc]Uwe Bonnes
2013-01-21native/usbuart: Move platform dependant parts to platform.hUwe Bonnes
2013-01-10Update to current libopencm3 usb api.Gareth McMullin
2012-10-22Build with libopencm3 as a submodule.Gareth McMullin
Fix incompatibilities with latest libopencm3.
2012-07-01Add delay after reset request.Gareth McMullin
Hopefully this fixes problems observed with failing vFlashWrite.
2012-06-30Allow user to specify JTAG IR lengths.Gareth McMullin
This allows the use of devices that shift out values other than 0x01 from IR.
2012-06-10Added stlink platform for Discovery boards and ST's ST-Link hardware.Gareth McMullin
2012-06-10Made jtagtap.c and swdptap.c STM32 generic.Gareth McMullin
2012-06-10Renamed platforms to 'native' and 'libftdi' and moved into 'platforms' dir.Gareth McMullin