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"/>

0 commit comments

Comments
 (0)