BUG 18FxxK42 when compiling a blank flowchart.

Moderator: Benj

Post Reply
medelec35
Matrix Staff
Posts: 9520
Joined: Sat May 05, 2007 2:27 pm
Location: Northamptonshire, UK
Has thanked: 2585 times
Been thanked: 3815 times
Contact:

BUG 18FxxK42 when compiling a blank flowchart.

Post by medelec35 »

Bug is related to this post (sorry if you can't view post) & This post.
The cause is fcdx is wrong.
Instead of:

Code: Select all

<configuration address='1' mult='2' >
        <format >
            <word value='0xFEFA' />
           <word value='0xF6FD' />
            <word value='0xFF80' />
            <word value='0xDFFF' />
            <word value='0xFFFF' />
        </format>
Should be:

Code: Select all

<configuration address='1' mult='2' >
        <format >
            <word value='0xFEFA' />
            <word value='0xF6F5' />
            <word value='0xFF80' />
            <word value='0xDFFF' />
            <word value='0xFFFF' />
        </format>
0xf6f5
Martin

User avatar
Benj
Matrix Staff
Posts: 15312
Joined: Mon Oct 16, 2006 10:48 am
Location: Matrix TS Ltd
Has thanked: 4803 times
Been thanked: 4314 times
Contact:

Re: BUG 18FxxK42 when compiling a blank flowchart.

Post by Benj »

Thanks Martin, Great spot!

Should be resolved now :D

Post Reply