History log of /system/nfc/halimpl/pn54x/tml/phTmlNfc_i2c.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
6fca02d5010de7bd31d83b853c32138021da5f29 30-Jan-2017 Ruchi Kandoi <kandoiruchi@google.com> Apply clang-format

find * | grep "\.[ch]" | xargs clang-format --style=file -i

Test: compiles
Change-Id: Id9b790d9685f7ba5ba1bcec1149619b63c2e679a
signed-off-by: Ruchi Kandoi <kandoiruchi@google.com>
/system/nfc/halimpl/pn54x/tml/phTmlNfc_i2c.c
552f2b745deddd35d9b75da9c9c09bd2f3f573a8 29-Jan-2017 Ruchi Kandoi <kandoiruchi@google.com> Fix comments which aren't accurately fixed by clang-format

Test: compiles
Change-Id: Ia3e7a4007b096d57ae082f8474649b17144a2a86
Signed-off-by: Ruchi Kandoi <kandoiruchi@google.com>
/system/nfc/halimpl/pn54x/tml/phTmlNfc_i2c.c
4a179646f6d5567830a0383050aee7610a0222a6 04-Jan-2017 Ruchi Kandoi <kandoiruchi@google.com> Replace TRUE/FALSE directives with standard true/false

@@
expression E;
@@

(
-E = TRUE
+E = true
|
-E == TRUE
+E == true
|
-E != TRUE
+E != true
|
-E ? TRUE : FALSE
+E ? true : false
)

@@
@@

(
-return TRUE;
+return true;
)

@@
identifier fn;
@@

fn (...,
-TRUE,
+true,
...)

type T1;
identifier i1;
@@

T1 i1 = {
- TRUE,
+ true,
...};

Test: Compiles
Change-Id: I633924fe6bc6a4c3f50634c5e1c6d75fb1d3258f
Signed-off-by: Ruchi Kandoi <kandoiruchi@google.com>
/system/nfc/halimpl/pn54x/tml/phTmlNfc_i2c.c
36d7231ec9344bed2996be1293e97d082fa22294 01-Mar-2016 Jizhou Liao <Jizhou.Liao@nxp.com> Support NXP PN551 NFC controller

The changes to support PN551 controller:
- New firmware download sequence
- New build option&configuration file
- Remove all warnings
- Bug fix

Change-Id: Ic7cedf067d2f3c7fa554c93a07bbc1c056ec44cc
/system/nfc/halimpl/pn54x/tml/phTmlNfc_i2c.c
121096a3511ea4ac559dea3ef7d39f0df00c97a6 19-May-2015 Jizhou Liao <Jizhou.Liao@nxp.com> Adding NXP NCI Hal implementation (DO NOT MERGE.)

This patch includes Hal implementation
of NXP's NCI based NFC controller.

Change-Id: I6ee7fac309aebb52ae3d7c197685df729751ee52
/system/nfc/halimpl/pn54x/tml/phTmlNfc_i2c.c