mirror of https://github.com/ARMmbed/mbed-os.git
I implemented USTICKER feature. The mainly changing is here. - I added a macro to mbed_drv_cfg.h for commonalizing code for GR-PEACH and GR-LYCHEE with different clock frequencies, and referenced it's macro at us_ticker.c. - ticker_init() Currently, ticker_init() keep counting, disables the ticker interrupt, and is safe to call repeatedly. Therefore, in order to satisfy specifications, I removed GIC_EnableIRQ at end of function and added GIC_DisableIRQ at begin of function. When an interrupt is required, it will be set with ticker_set_interrupt(). If executing the following, the counter has been initialized. So it will not call after executing the first time. OSTM1TT = 0x01; /* Stop the counter and clears the OSTM1TE bit. */ OSTM1TS = 0x1; /* Start the counter and sets the OSTM0TE bit. */ - ticker_free() this function stops the counting and powerdown the us_ticker. To satisfy the mbed specificationm, I implemented free() function. - ticker_read() Currently, Mbed spec's frequeny is between 250KHz and 8MHz, but the frequency that is used at my ticker is 33MHz. Therefore, in order to satisfy specifications, I changed the process to return the timer counter value divided by 32(33MHz / 32). Since the calcurate function by using 64 bit is no longer necessay, I removed it. - ticker_set_interrupt() Same as the above read(), In order to satisfy specifications, I changed the process to set the value multiplied by 32. - ticker_fire_interrupt() In order to satisfy specifications, I implemented fire_interrupt() function. Also I added GIC_EnableIRQ for allowing the interrupt at end of function. - ticker_get_info() To satisfy the mbed specificationm, I implemented ticker_get_info() function. The value of freq includes rounding off. |
||
---|---|---|
.. | ||
TARGET_MBED_MBRZA1LU | ||
device | ||
PeripheralNames.h | ||
PeripheralPins.c | ||
PinNames.h | ||
PortNames.h | ||
device.h | ||
mbed_drv_cfg.h | ||
trng_api_esp32.cpp |