From: asterix Date: Thu, 21 Jul 2011 16:40:57 +0000 (+0000) Subject: Power on all devices. X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=da13220dd06b453d49a50f394528854bf4d2cfc8;p=bertos.git Power on all devices. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4979 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/drv/wm8731.c b/bertos/drv/wm8731.c index 0b56af96..74a07c4f 100644 --- a/bertos/drv/wm8731.c +++ b/bertos/drv/wm8731.c @@ -146,5 +146,5 @@ void wm8731_init(Wm8731 *ctx, I2c *i2c, uint8_t codec_addr) /* By default we turn on all devices and disable only the outclock */ wm8731_write(ctx, WM8731_REG_ACTIVE_CTRL, 1); - wm8731_write(ctx, WM8731_REG_PWDOWN_CTRL, 0x47); + wm8731_write(ctx, WM8731_REG_PWDOWN_CTRL, 0x40); }