Nov 21, 2011 #1 L lats Full Member level 4 Joined Oct 27, 2005 Messages 216 Helped 13 Reputation 26 Reaction score 6 Trophy points 1,298 Activity points 2,945 Dear frnz i am designing a project using mcp4461 and pic18f4550. i am not able to understand that in mcp4461 what to do with pin 14 and 15 which are RESET and WR . can anybody help me out with the code also. thankyou
Dear frnz i am designing a project using mcp4461 and pic18f4550. i am not able to understand that in mcp4461 what to do with pin 14 and 15 which are RESET and WR . can anybody help me out with the code also. thankyou
Nov 21, 2011 #2 W wp100 Advanced Member level 6 Joined May 15, 2009 Messages 3,051 Helped 884 Reputation 1,783 Reaction score 733 Trophy points 113 Location Prime Meridian Activity points 0 Hi, According to the datasheet those pins have weak pull ups. The Reset, pulled Low, can be performed from the Pic when needed, see the datasheet for details, otherwise its left High. The WP is Write Protect, again you can control it from the Pic or just left High to allow continuous write enabled.
Hi, According to the datasheet those pins have weak pull ups. The Reset, pulled Low, can be performed from the Pic when needed, see the datasheet for details, otherwise its left High. The WP is Write Protect, again you can control it from the Pic or just left High to allow continuous write enabled.
Nov 22, 2011 #3 L lats Full Member level 4 Joined Oct 27, 2005 Messages 216 Helped 13 Reputation 26 Reaction score 6 Trophy points 1,298 Activity points 2,945 Thanks for replying I tried interfacing the chip I did the following basic code but no success. Code: void ByteWrite(unsigned char Device, unsigned char address,unsigned char data); #define DIGIPOT 0x58 ByteWrite(DIGIPOT, (0x04<<4)|0x01, 0xF0);//to select Resistor 1 only ByteWrite(DIGIPOT, (0x03<<4)|0x00, 0x80);//to select mid position of wiper 1 When I try to measure resistance between pin 8 & Pin 10 of (MCP4461 - 100 TSSOP 20-Pin) I get unstable values from 29k to 52k. Please help me out , bit urgent With best Regards.
Thanks for replying I tried interfacing the chip I did the following basic code but no success. Code: void ByteWrite(unsigned char Device, unsigned char address,unsigned char data); #define DIGIPOT 0x58 ByteWrite(DIGIPOT, (0x04<<4)|0x01, 0xF0);//to select Resistor 1 only ByteWrite(DIGIPOT, (0x03<<4)|0x00, 0x80);//to select mid position of wiper 1 When I try to measure resistance between pin 8 & Pin 10 of (MCP4461 - 100 TSSOP 20-Pin) I get unstable values from 29k to 52k. Please help me out , bit urgent With best Regards.