Revision 649f2bd1dbc5702edbc4cbacf44d25ba3ccd8cc9 authored by Felix Ruess on 09 July 2013, 09:34:43 UTC, committed by Felix Ruess on 09 July 2013, 19:17:16 UTC
- krooz: don't use TIM2 for PWM
- change to 6 ticks per usec to fit all frequencies
- on the F1 we assume to run at 72MHz for HCLK and both timer clocks
  TIM1 -> APB2 = HCLK = 72MHz
  TIM2 -> 2 * APB1 = 2 * 36MHz = 72MHz
- on the F4 we assume 2 * AHB clock:
  TIM1 -> 2 * APB2 = 168MHz
  TIM2 -> 2 * APB1 = 84MHz
1 parent 60a6d89
Raw File
i2c_abuse_test.xml
<!DOCTYPE module SYSTEM "module.dtd">

<module name="benchmark">
  <doc>
    <description></description>
  </doc>
  <header>
    <file name="i2c_abuse_test.h"/>
  </header>
  <init fun="init_i2c_abuse_test()"/>
  <periodic fun="periodic_50Hz_i2c_abuse_test()" period="0.02" autorun="TRUE" />
  <event fun="event_i2c_abuse_test()" />
  <makefile>
    <file name="i2c_abuse_test.c"/>
    <raw>
ifeq ($(ARCH), lpc21)
$(TARGET).CFLAGS += -DI2C_ABUSE_LED=3
$(TARGET).CFLAGS += -DUSE_I2C0
$(TARGET).CFLAGS += -DI2C_ABUSE_PORT=i2c0
else ifeq ($(ARCH), stm32)
$(TARGET).CFLAGS += -DI2C_ABUSE_LED=7
$(TARGET).CFLAGS += -DI2C_ABUSE_PORT=i2c2
endif

    </raw>
  </makefile>
</module>

back to top