Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 2:0780c234e572, committed 2020-08-03
- Comitter:
- mahphalke
- Date:
- Mon Aug 03 09:18:41 2020 +0000
- Parent:
- 1:1d54b9448386
- Commit message:
- Added no-os driver support for AD4114/15 devices
Changed in this revision
ad717x.c | Show annotated file Show diff for this revision Revisions of this file |
ad717x.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 1d54b9448386 -r 0780c234e572 ad717x.c --- a/ad717x.c Fri Mar 27 06:13:55 2020 +0000 +++ b/ad717x.c Mon Aug 03 09:18:41 2020 +0000 @@ -2,7 +2,7 @@ * @file AD717X.c * @brief AD717X implementation file. * Devices: AD7172-2, AD7172-4, AD7173-8, AD7175-2, AD7175-8, AD7176-2 -* AD7177-2 +* AD7177-2, AD4111, AD4112, AD4114, AD4115 * @author acozma (andrei.cozma@analog.com) * dnechita (dan.nechita@analog.com) *
diff -r 1d54b9448386 -r 0780c234e572 ad717x.h --- a/ad717x.h Fri Mar 27 06:13:55 2020 +0000 +++ b/ad717x.h Mon Aug 03 09:18:41 2020 +0000 @@ -2,7 +2,7 @@ * @file AD717X.h * @brief AD717X header file. * Devices: AD7172-2, AD7172-4, AD7173-8, AD7175-2, AD7175-8, AD7176-2, -* AD7177-2, AD4111 +* AD7177-2, AD4111, AD4112, AD4114, AD4115 * @author acozma (andrei.cozma@analog.com) * dnechita (dan.nechita@analog.com) ******************************************************************************* @@ -212,7 +212,7 @@ #define AD717X_GPIOCON_REG_PDSW (1 << 14) #define AD717X_GPIOCON_REG_OP_EN2_3 (1 << 13) -/* GPIO Configuration Register additional bits for AD4111, AD4112 */ +/* GPIO Configuration Register additional bits for AD4111, AD4112, AD4114, AD4115 */ #define AD4111_GPIOCON_REG_OP_EN0_1 (1 << 13) #define AD4111_GPIOCON_REG_DATA1 (1 << 7) #define AD4111_GPIOCON_REG_DATA0 (1 << 6)