1 2 3 4 5 6 7 8 9 10 11
12 /*!
13 * ======== Comparator_E ========
14 * MSP430FR5xx Family Comparator_E Module
15 */
16 metaonly module Comparator_E inherits IComparator {
17
18 instance:
19 /*!
20 * ======== baseAddr ========
21 * Address of the peripheral's control register.
22 *
23 * A peripheral's registers are commonly accessed through a structure
24 * that defines the offsets of a particular register from the lowest
25 * address mapped to a peripheral. That lowest address is specified by
26 * this parameter.
27 */
28 config UInt baseAddr;
29
30 /*! Interrupt enables */
31 config regIntVect_t interruptSource[2];
32
33 /*! Determine if each Register needs to be forced set or not */
34 readonly config ForceSetDefaultRegister_t forceSetDefaultRegister[] =
35 [
36 ];
37 }