Skip to content

Commit ac39510

Browse files
cy-opmKyle Kearney
authored andcommitted
Update PDL to 1.3.0 final
1 parent 04aa0a6 commit ac39510

File tree

72 files changed

+20
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+20
-15
lines changed

targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/drivers/include/cy_canfd.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,10 @@ typedef struct
900900
{
901901
cy_en_canfd_fifo_mode_t mode; /**< CAN FD Rx FIFO operating mode */
902902
uint8_t watermark; /**< Watermark */
903-
uint8_t numberOfFIFOElements; /**< Number Of FIFO elements */
903+
uint8_t numberOfFIFOElements; /**< Number Of FIFO elements. Note:
904+
* The Rx FIFO size must be greater than 1 when
905+
* FIFO Top Pointer Logic is enabled.
906+
*/
904907
bool topPointerLogicEnabled; /**< Top pointer logic enabled */
905908
}cy_en_canfd_fifo_config_t;
906909

targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/drivers/include/cy_seglcd.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@
4848
* * TN - A twisted nematic LCD glass.
4949
* * STN - A super-twisted nematic LCD glass.
5050
* * Display - A block of homogeneous symbols on an LCD glass
51-
* intended to indicate a multi-digital number or string.
51+
* intended to indicate a multi-digital number or character string.
5252
* A few displays are possible whithin a single LCD glass.
53+
* * Symbol - A block of pixels on an LCD glass intended to indicate only digit or character.
5354
* * Pixel - A unity LCD displaying item with a binary state (on/off).
5455
* It can be a segment of e.g. the 7-segment symbol (therefore may be called "segment"),
5556
* a pixel of the matrix display, or a standalone arbitrarily-shaped display element.

targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/personalities/peripheral/canfd-1.0.cypersonality

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
<!-- Message RAM -->
101101
<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)." />
102102
<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." />
103-
<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." />
103+
<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." />
104104

105105
<!-- Bitrate Setting -->
106106
<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,9 +354,10 @@ treated.">
354354
<!--FIFO DRCs-->
355355
<DRC type="ERROR" text="Rx FIFO 0 Size must be greater than Rx FIFO 0 Watermark." condition="`${((watermarkFifo0 ge numberOfFifo0Elements) &amp;&amp; (numberOfFifo0Elements ne 0)) ? true : false}`"/>
356356
<DRC type="ERROR" text="Rx FIFO 1 Size must be greater than Rx FIFO 1 Watermark." condition="`${((watermarkFifo1 ge numberOfFifo1Elements) &amp;&amp; (numberOfFifo1Elements ne 0)) ? true : false}`"/>
357-
357+
<DRC type="ERROR" text="Rx FIFO 0 Size must be greater than 1 when FIFO 0 Top Pointer Logic Enabled." condition="`${(topPointerLogicEnabledFifo0 &amp;&amp; (numberOfFifo0Elements &lt; 2)) ? true : false}`"/>
358+
<DRC type="ERROR" text="Rx FIFO 1 Size must be greater than 1 when FIFO 1 Top Pointer Logic Enabled." condition="`${(topPointerLogicEnabledFifo1 &amp;&amp; (numberOfFifo1Elements &lt; 2)) ? true : false}`"/>
358359
</DRCs>
359-
360+
360361
<ConfigFirmware>
361362
<ConfigInclude value="cy_canfd.h" include="true" />
362363
<ConfigInclude value="cy_sysclk.h" include="`${pclkOk}`" />

targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/personalities/peripheral/coex-1.0.cypersonality

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</ExposedMembers>
3737
<Parameters>
3838
<!-- PDL documentation -->
39-
<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" />
39+
<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" />
4040

4141
<ParamChoice id="lepriority" name="BLE Scan/Discovery Priority" group="General" default="1" visible="true" editable="true" desc="Choose the BLE scan and discovery priority">
4242
<Entry name="Low" value="0" visible="true"/>

targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/udd/devices/MXS40/PSoC6A512K/studio/analog.cysem

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2727,8 +2727,8 @@
27272727
</Instance>
27282728
</Instances>
27292729
<Signals count="49">
2730-
<Signal name="AmuxA3_bridge" type="" terminalCount="0" />
2731-
<Signal name="AmuxB3_bridge" type="" terminalCount="0" />
2730+
<Signal name="AmuxA1_bridge" type="" terminalCount="0" />
2731+
<Signal name="AmuxB1_bridge" type="" terminalCount="0" />
27322732
<Signal name="amuxbus_a_csd0" type="Analog" terminalCount="4">
27332733
<Terminal name="cy_shapetag_disconnect_21.a" type="Instance Analog InOut" />
27342734
<Terminal name="cy_shapetag_disconnect_19.a" type="Instance Analog InOut" />

targets/TARGET_Cypress/TARGET_PSOC6/psoc6pdl/udd/devices/MXS40/PSoC6A512K/studio/analog.cyvis

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3325,24 +3325,24 @@
33253325
<TextAlignment value="TopLeft" />
33263326
</Annotation>
33273327
</Wire>
3328-
<Wire shapeName="Shape_3194" zorder="259" effectiveName="AmuxB3_bridge" type="Analog">
3328+
<Wire shapeName="Shape_3194" zorder="259" effectiveName="AmuxB1_bridge" type="Analog">
33293329
<Point1 x="372" y="108" />
33303330
<Point2 x="372" y="504" />
33313331
<ShapeTags>w:LPCOMP0_COMP0, w:LPCOMP0_COMP1</ShapeTags>
33323332
<Annotation zorder="260">
33333333
<Location x="732" y="738" />
3334-
<Text>AmuxB3_bridge</Text>
3334+
<Text>AmuxB1_bridge</Text>
33353335
<Vertical value="false" />
33363336
<TextAlignment value="TopLeft" />
33373337
</Annotation>
33383338
</Wire>
3339-
<Wire shapeName="Shape_3196" zorder="261" effectiveName="AmuxA3_bridge" type="Analog">
3339+
<Wire shapeName="Shape_3196" zorder="261" effectiveName="AmuxA1_bridge" type="Analog">
33403340
<Point1 x="390" y="90" />
33413341
<Point2 x="390" y="522" />
33423342
<ShapeTags>w:LPCOMP0_COMP0, w:LPCOMP0_COMP1</ShapeTags>
33433343
<Annotation zorder="262">
33443344
<Location x="744" y="864" />
3345-
<Text>AmuxA3_bridge</Text>
3345+
<Text>AmuxA1_bridge</Text>
33463346
<Vertical value="false" />
33473347
<TextAlignment value="TopLeft" />
33483348
</Annotation>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.2.58
1+
1.1.2.59
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<version>1.1.2.58</version>
1+
<version>1.1.2.59</version>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<version>1.3.0.1305</version>
1+
<version>1.3.0.1324</version>

0 commit comments

Comments
 (0)