what's difference between Peripheral Driver Library 3.1.1 & Peripheral Driver Library 3.1.2?

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
anzh_4716821
Level 2
Level 2
First like received First like given

when using Psoc Creator, it always comes out an alert notice to recommend updating the component from Peripheral Driver Library 3.1.1 to Peripheral Driver Library 3.1.2 , what's the difference between 3.1.1 & 3.1.2? which one is better to analyze the touch signal?

0 Likes
1 Solution
MotooTanaka
Level 9
Level 9
Distributor - Marubun (Japan)
First comment on blog Beta tester First comment on KBA

Hi,

You can find "pdl_release_notes.pdf" at C:\Program Files (x86)\Cypress\PDL\3.1.2\doc.

There is a section "New Features", all I could find there was mention of BLE 2.5 though.

As there could be some more 'undocumented" bug-fixes included,

I would recommend you to use the newer one if you have choice.

moto

P.S. Just from my curiosity I ran the following shell script from Cygwin

cmd_pld.sh

===============

#!/bin/sh

old=/cygdrive/c/"Program Files (x86)"/Cypress/PDL/3.1.1

new=/cygdrive/c/"Program Files (x86)"/Cypress/PDL/3.1.2

# cd "$new"

for file in `cat filelist`

do

cd "$new"

cmp ./"$file" ../3.1.1/"$file"

done

===============

And there were 1382 files which have different part between 3.1.1 and 3.1.2 from 4710 files in 3.1.2.

So apparently there were more changes than the description of the release note.

View solution in original post

4 Replies