Programming the AL3201

srnet

Senior Member
Maybe it is, maybe not.

The manual says of the assembly language program upload;

"Please refer to the assembly language guide for a full description"

What does it say ?
 

hippy

Ex-Staff (retired)
Any thoughts?
It should be possible. The communications with the AL3201 seems to be a variant of two-wire SPI which can be bit-banged from a PICAXE. It may be possible to use SHIFTOUT/SHIFTIN or HSPI commands instead of bit-banging but may not be necessary.

The *.ASM files are source code so you need to assemble/compile those. You can then inspect the contents of the 'object code' output files, determine the data which is loaded into the AL3201, then write a PICAXE program holding the same data for it to transfer.
 

pbaker21

Senior Member
*.ASM files are source code so you need to assemble/compile those - Good idea! I'll look into that. Thanks.

It should be possible. The communications with the AL3201 seems to be a variant of two-wire SPI which can be bit-banged from a PICAXE. It may be possible to use SHIFTOUT/SHIFTIN or HSPI commands instead of bit-banging but may not be necessary.

The *.ASM files are source code so you need to assemble/compile those. You can then inspect the contents of the 'object code' output files, determine the data which is loaded into the AL3201, then write a PICAXE program holding the same data for it to transfer.
 
Top