ole00 / afterburner

GAL chip programmer for Arduino
166 stars 46 forks source link

MCP4151 instead of MCP4131 #28

Open MarkusPlehn opened 1 year ago

MarkusPlehn commented 1 year ago

is it possible, to change the MCP4131 with the 4151 because of availability? It's hard to find these part here in germany. But the MCP4151 is available.

ole00 commented 1 year ago

Not as a drop-in replacement (that is, without Arduino code changes) . The reason it's not possible as a drop-in replacement is that 4151 has 257 tap values, while 4131 has only 129. So setting the 4131 maximum tap of value 128 would only set the 4151 tap to a half of its resistance range.

On the other hand, it is possible to use 4151 if you also change the Arduino code and recalculate the tap value (multiply by 2) just before it is sent to the MCP chip via SPI transaction.

BTW. I just checked mouser.de and digikey.de and there seems to be plenty of stock of mcp4131.

ole00 commented 1 year ago

If you look at aftb_mcp4131.h source code, function mcp4131_reg(...). The function parameters are 'address' and 'value'. What needs to be done is: If the address equals ADDR_WIPER then multiply the value by 2. do that on the start of the function. Also, when the 'read_reg' parameter is true then you have to divide the Wiper value read from the chip by 2 just before tha value is returned from the function (only when ADDR_WIPER address is specified).

Thinking about it, the code could autodetect mcp4131 and mcp4151 by setting value of the tap/wiper to 200 during initialisation. If the value would be accepted by the chip (read value would also be 200) then it is mcp4151. The value multiplication/division could then be done conditionally based on the detected chip.

MarkusPlehn commented 1 year ago

thanks for your reply. yes Mouser and the other big player could deliver, but with high shipping cost (single order).

The automatic chip detection inside the code is a quite nice idea 👍

ole00 @.***> schrieb am Mo., 15. Mai 2023, 23:40:

If you look at aftb_mcp4131.h source code, function mcp4131_reg(...). The function parameters are 'address' and 'value'. What needs to be done is: If the address equals ADDR_WIPER then multiply the value by 2. do that on the start of the function. Also, when the 'read_reg' parameter is true then you have to divide the Wiper value read from the chip by 2 just before tha value is returned from the function (only when ADDR_WIPER address is specified).

Thinking about it, the code could autodetect mcp4131 and mcp4151 by setting value of the tap/wiper to 200. If the value would be accepted by the chip (read value would also be 200) then it is mcp4151. The value multiplication/division could then be done conditionally based on the detected chip.

— Reply to this email directly, view it on GitHub https://github.com/ole00/afterburner/issues/28#issuecomment-1548629853, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADTUG6YBQICBNI5ZCE4UVWTXGKPF5ANCNFSM6AAAAAAYCSHQGE . You are receiving this because you authored the thread.Message ID: @.***>

ole00 commented 1 year ago

Chip availability: you have a good point. Even if the parts are in stock today, there is no guarantee they will be available in 6 months as well. I've ordered mcp4151 and will add support for the chip. Thanks for the idea.

ole00 commented 1 year ago

I got the MCP4151 today, so I've added support for it. The chip type (4131/4151) is autodetected, although slightly different technique had to be used. It seems that only 'Autoincrement' command clamps the value to its upper limit, so I used that to do the autodetection. In order to use MCP4151-103 make sure to pull the latest code and upload the Arduino sketch. The MCP4151 is now a hardware drop-in replacement for MCP4131, no need to modify the board. mcp4151

MarkusPlehn commented 1 year ago

Great! i have finished my Board today and will test with the MCP4151 👍

MarkusPlehn commented 1 year ago

YES, it works. 😃 I have to calibrate with Option 'B5' then the measurement was exactly.

ole00 commented 1 year ago

Well done. I'm glad it works for you.