mirror of https://github.com/ARMmbed/mbed-os.git
Update PDL to 1.3.0 final
parent
04aa0a6e9d
commit
ac3951097f
|
@ -900,7 +900,10 @@ typedef struct
|
|||
{
|
||||
cy_en_canfd_fifo_mode_t mode; /**< CAN FD Rx FIFO operating mode */
|
||||
uint8_t watermark; /**< Watermark */
|
||||
uint8_t numberOfFIFOElements; /**< Number Of FIFO elements */
|
||||
uint8_t numberOfFIFOElements; /**< Number Of FIFO elements. Note:
|
||||
* The Rx FIFO size must be greater than 1 when
|
||||
* FIFO Top Pointer Logic is enabled.
|
||||
*/
|
||||
bool topPointerLogicEnabled; /**< Top pointer logic enabled */
|
||||
}cy_en_canfd_fifo_config_t;
|
||||
|
||||
|
|
|
@ -48,8 +48,9 @@
|
|||
* * TN - A twisted nematic LCD glass.
|
||||
* * STN - A super-twisted nematic LCD glass.
|
||||
* * Display - A block of homogeneous symbols on an LCD glass
|
||||
* intended to indicate a multi-digital number or string.
|
||||
* intended to indicate a multi-digital number or character string.
|
||||
* A few displays are possible whithin a single LCD glass.
|
||||
* * Symbol - A block of pixels on an LCD glass intended to indicate only digit or character.
|
||||
* * Pixel - A unity LCD displaying item with a binary state (on/off).
|
||||
* It can be a segment of e.g. the 7-segment symbol (therefore may be called "segment"),
|
||||
* a pixel of the matrix display, or a standalone arbitrarily-shaped display element.
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
<!-- Message RAM -->
|
||||
<ParamRange id="messageRAMaddress" name="Message RAM Address Offset" group="Message RAM" default="0" min="0" max="4294967295" resolution="4" visible="true" editable="true" desc="The start address offset of Message RAM for the channel (in bytes)." />
|
||||
<ParamRange id="noOfTxEvenFifo" name="Number of Tx Even FIFO Elements" group="Message RAM" default="10" min="0" max="32" resolution="1" visible="false" editable="false" desc="The Number Of Tx Even FIFO elements for the channel." />
|
||||
<ParamRange id="messageRAMsize" name="Message RAM Size" group="Message RAM" default="8192" min="`${8 * noOfTxEvenFifo}`" max="65536" resolution="4" visible="true" editable="true" desc="The size in bytes of Message RAM for the channel." />
|
||||
<ParamRange id="messageRAMsize" name="Message RAM Size" group="Message RAM" default="`${MRAM_SIZE * 1024}`" min="`${8 * noOfTxEvenFifo}`" max="`${MRAM_SIZE * 1024}`" resolution="4" visible="true" editable="true" desc="The size in bytes of Message RAM for the channel." />
|
||||
|
||||
<!-- Bitrate Setting -->
|
||||
<ParamRange id="nominalPrescaler" name="Nominal Prescaler" group="Bitrate Setting" default="4" min="1" max="512" resolution="1" visible="true" editable="true" desc="Nominal Bit Rate Prescaler." />
|
||||
|
@ -354,7 +354,8 @@ treated.">
|
|||
<!--FIFO DRCs-->
|
||||
<DRC type="ERROR" text="Rx FIFO 0 Size must be greater than Rx FIFO 0 Watermark." condition="`${((watermarkFifo0 ge numberOfFifo0Elements) && (numberOfFifo0Elements ne 0)) ? true : false}`"/>
|
||||
<DRC type="ERROR" text="Rx FIFO 1 Size must be greater than Rx FIFO 1 Watermark." condition="`${((watermarkFifo1 ge numberOfFifo1Elements) && (numberOfFifo1Elements ne 0)) ? true : false}`"/>
|
||||
|
||||
<DRC type="ERROR" text="Rx FIFO 0 Size must be greater than 1 when FIFO 0 Top Pointer Logic Enabled." condition="`${(topPointerLogicEnabledFifo0 && (numberOfFifo0Elements < 2)) ? true : false}`"/>
|
||||
<DRC type="ERROR" text="Rx FIFO 1 Size must be greater than 1 when FIFO 1 Top Pointer Logic Enabled." condition="`${(topPointerLogicEnabledFifo1 && (numberOfFifo1Elements < 2)) ? true : false}`"/>
|
||||
</DRCs>
|
||||
|
||||
<ConfigFirmware>
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
</ExposedMembers>
|
||||
<Parameters>
|
||||
<!-- PDL documentation -->
|
||||
<ParamDoc id="pdlDoc" name="Configuration Help" group="Peripheral Documentation" default="file:///`${cy_libs_path()}`/docs/pdl_api_reference_manual/html/group__group__coex.html" linkText="Open coex Documentation" visible="true" desc="Opens the BT coex Documentation" />
|
||||
<ParamDoc id="pdlDoc" name="Configuration Help" group="Peripheral Documentation" default="https://cypresssemiconductorco.github.io/coex/coex_api_reference_manual/html/index.html" linkText="Open Coexistence Documentation" visible="true" desc="Opens the Wifi/BT Coexistence Documentation" />
|
||||
|
||||
<ParamChoice id="lepriority" name="BLE Scan/Discovery Priority" group="General" default="1" visible="true" editable="true" desc="Choose the BLE scan and discovery priority">
|
||||
<Entry name="Low" value="0" visible="true"/>
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -2727,8 +2727,8 @@
|
|||
</Instance>
|
||||
</Instances>
|
||||
<Signals count="49">
|
||||
<Signal name="AmuxA3_bridge" type="" terminalCount="0" />
|
||||
<Signal name="AmuxB3_bridge" type="" terminalCount="0" />
|
||||
<Signal name="AmuxA1_bridge" type="" terminalCount="0" />
|
||||
<Signal name="AmuxB1_bridge" type="" terminalCount="0" />
|
||||
<Signal name="amuxbus_a_csd0" type="Analog" terminalCount="4">
|
||||
<Terminal name="cy_shapetag_disconnect_21.a" type="Instance Analog InOut" />
|
||||
<Terminal name="cy_shapetag_disconnect_19.a" type="Instance Analog InOut" />
|
||||
|
|
|
@ -3325,24 +3325,24 @@
|
|||
<TextAlignment value="TopLeft" />
|
||||
</Annotation>
|
||||
</Wire>
|
||||
<Wire shapeName="Shape_3194" zorder="259" effectiveName="AmuxB3_bridge" type="Analog">
|
||||
<Wire shapeName="Shape_3194" zorder="259" effectiveName="AmuxB1_bridge" type="Analog">
|
||||
<Point1 x="372" y="108" />
|
||||
<Point2 x="372" y="504" />
|
||||
<ShapeTags>w:LPCOMP0_COMP0, w:LPCOMP0_COMP1</ShapeTags>
|
||||
<Annotation zorder="260">
|
||||
<Location x="732" y="738" />
|
||||
<Text>AmuxB3_bridge</Text>
|
||||
<Text>AmuxB1_bridge</Text>
|
||||
<Vertical value="false" />
|
||||
<TextAlignment value="TopLeft" />
|
||||
</Annotation>
|
||||
</Wire>
|
||||
<Wire shapeName="Shape_3196" zorder="261" effectiveName="AmuxA3_bridge" type="Analog">
|
||||
<Wire shapeName="Shape_3196" zorder="261" effectiveName="AmuxA1_bridge" type="Analog">
|
||||
<Point1 x="390" y="90" />
|
||||
<Point2 x="390" y="522" />
|
||||
<ShapeTags>w:LPCOMP0_COMP0, w:LPCOMP0_COMP1</ShapeTags>
|
||||
<Annotation zorder="262">
|
||||
<Location x="744" y="864" />
|
||||
<Text>AmuxA3_bridge</Text>
|
||||
<Text>AmuxA1_bridge</Text>
|
||||
<Vertical value="false" />
|
||||
<TextAlignment value="TopLeft" />
|
||||
</Annotation>
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
|||
1.1.2.58
|
||||
1.1.2.59
|
||||
|
|
|
@ -1 +1 @@
|
|||
<version>1.1.2.58</version>
|
||||
<version>1.1.2.59</version>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<version>1.3.0.1305</version>
|
||||
<version>1.3.0.1324</version>
|
||||
|
|
Loading…
Reference in New Issue