Host Engineering Forum

General Category => Do-more CPUs and Do-more Designer Software => Topic started by: pioplastic on August 05, 2013, 10:16:50 AM

Title: Display DoMore recipe in Cmore
Post by: pioplastic on August 05, 2013, 10:16:50 AM
I was wondering if there is a way to display the recipe name which is stored in recname
Title: Re: Display DoMore recipe in Cmore
Post by: plcnut on August 05, 2013, 10:23:26 AM
Use STRPRINT and you won't have to make the string so long.
And you are correct that the only string memory that the C-more can read is SS or SL.
Title: Re: Display DoMore recipe in Cmore
Post by: Controls Guy on August 05, 2013, 05:58:32 PM
The C-More DL driver can read and write strings the "old way", encoded two bytes per register in a contiguous block.  You could just put the names in DLV-memory, although then you'd have one foot in the old system and one in the new.
Title: Re: Display DoMore recipe in Cmore
Post by: pioplastic on August 08, 2013, 10:57:52 AM
Thanks for the input. I figured that I would need to convert them to visible strings. I will experiment to find the best option and let you know.