On Tiva C (LaunchPad with TM4C123GH6PM), is it possible to obtain on an external pin a clock signal that is synchronized to (i.e. a divided version of) the clock generated by the Precision Internal Oscillator when the latter is not selected as the System Clock?
For example, "exporting" the system clock to a pin seems to be possible by configuring a PWM output from a general-purpose timer. But system clock is subject to change across deep sleep transitions.
The broader question: is it possible to export a clock signal that (a) can be used as the source for (any kind of a) timer, and (b) does not change across deep sleep transitions? A clock signal (the only one?) that fulfils both (a) and (b) is the Precision Internal Oscillator clock. It fulfils (a) since it can be set at the source for the SysTick timer and (b) since it can be configured to remain on during deep sleep. But can PI be exported via a pin?
Things attempted:
(1) abuse SSIClk. SSIClk can be tied to PI and is visible on an external pin (if transfer is continuous, i.e. tx fifo is never empty), so it does the job, except that the core needs to continuously create transmissions and thus cannot go to sleep, which is a show-stopper.
(2) use Main Oscillator only which is accessible at the crystal pins: does not fulfil (a) -- cannot clock any timer directly from it (not via System Clock) as far as I could find.