diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2012-05-07 19:56:43 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2012-05-16 13:23:38 -0400 |
commit | 19abc1a7872e99b3b36652e61d91ab92c0683bcf (patch) | |
tree | dbfb83a4712ac142a98bd1fdfd3f5f2a0c49de5e /source/libmaple | |
parent | 431fdc56b59af4d39d9f1a2b2658ec500ccc8f4e (diff) | |
download | librambutan-19abc1a7872e99b3b36652e61d91ab92c0683bcf.tar.gz librambutan-19abc1a7872e99b3b36652e61d91ab92c0683bcf.zip |
libmaple/overview.rst: Improve parallel style.
Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'source/libmaple')
-rw-r--r-- | source/libmaple/overview.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/libmaple/overview.rst b/source/libmaple/overview.rst index c513393..08eb19c 100644 --- a/source/libmaple/overview.rst +++ b/source/libmaple/overview.rst @@ -137,12 +137,12 @@ always possible, but can be nonportable, and should you choose to do this, it's up to you to get it right. An ``adc_dev`` also contains an ``rcc_clk_id`` for the ADC peripheral -it represents. The ``rcc_clk_id`` enum type has an enumerator for -each peripheral supported by your series. For example, the ADC -peripherals' ``rcc_clk_id`` enumerators are ``RCC_ADC1``, -``RCC_ADC2``, and ``RCC_ADC3``. In general, an ``rcc_clk_id`` is -useful not only for managing the clock line to a peripheral, but also -as a unique identifier for that peripheral. +it represents in the ``clk_id`` field. The ``rcc_clk_id`` enum type +has an enumerator for each peripheral supported by your series. For +example, the ADC peripherals' ``rcc_clk_id`` enumerators are +``RCC_ADC1``, ``RCC_ADC2``, and ``RCC_ADC3``. In general, an +``rcc_clk_id`` is useful not only for managing the clock line to a +peripheral, but also as a unique identifier for that peripheral. (Device types can be more complicated than this; ``adc_dev`` was chosen as a simple example of the minimum you can expect.) |