<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.arm.com/utility/feedstylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Codewright Support</title><link>https://community.arm.com/developer/tools-software/tools/f/keil-forum/15359/codewright-support</link><description> have tried to use A51 with Codewright (V5.1 to V7) and found that the _KeilC51ErrorInfo error parser contained in errpar32.dll cannot do the job with A51 output. Expression suggested by codewright support application is 
 
^\**[ \t]+(error|warning).</description><dc:language>en-US</dc:language><generator>Telligent Community 10</generator><item><title>RE: Codewright Support</title><link>https://community.arm.com/thread/84319?ContentTypeID=1</link><pubDate>Mon, 23 Feb 2004 12:21:22 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:15043104-26b7-443c-9c18-474af74d9f77</guid><dc:creator>Matthew Manthey</dc:creator><description>&lt;p&gt;Hi Jurgen,&lt;br /&gt;
&lt;br /&gt;
Thanks for your input.  I will have to try the syntax in you previous posts.  However, I have found that the default CodeWright error parser, _ErrorInfoDefault, works well with the Keil compiler.  I simply added the parser, and everything is well.  Don&amp;#39;t know if _ErrorInfoDefault will work with older versions.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Codewright Support</title><link>https://community.arm.com/thread/95156?ContentTypeID=1</link><pubDate>Mon, 23 Feb 2004 12:17:15 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:0e9a9d2e-563a-4974-82d4-1359ebcf3fe5</guid><dc:creator>erik  malund</dc:creator><description>&lt;p&gt;&lt;i&gt;I still use Codewright 5.1. For the last mail bug report to the new owner (Borland)&lt;/i&gt;&lt;br /&gt;
Borland killed the last champ (brief) did they now kill CodeWright too?&lt;br /&gt;
&lt;br /&gt;
Erik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Codewright Support</title><link>https://community.arm.com/thread/54669?ContentTypeID=1</link><pubDate>Mon, 23 Feb 2004 10:56:06 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:4c5114f9-686f-4cbd-9196-03b1fe73a4b7</guid><dc:creator>J&amp;#252;rgen  Veith</dc:creator><description>&lt;p&gt;I still use Codewright 5.1. For the last mail bug report to the new owner (Borland) was no response from the support at all. Seems anybody without money for latest versions is the f***er - another reason not to buy an update.&lt;br /&gt;
&lt;br /&gt;
To your problem: There seems no parser for Keil included. For this reason you can setup your own parser using regular expressions. Therefore use the project-erros tab and search for a button &amp;quot;Custom Error Parsers&amp;quot;. Here you can enter a new name (e.g. Keil166) and a Pattern what is the above mentioned regex. The &amp;quot;group specifications&amp;quot; tell codewright how to use the parsed data to trigger the editor sync. One of the CW bugs is, that the sync does not work proper for 4 digit line numbers. With other words, of your file exceeds 999 lines, you should split it to a new one. Think I can solve this with compiling the parser but I only use Keil occasionally.&lt;br /&gt;
&lt;br /&gt;
If you have further CW questions, dont hesitate to drop me a private message&lt;br /&gt;
janvi@despammed.com&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Codewright Support</title><link>https://community.arm.com/thread/39169?ContentTypeID=1</link><pubDate>Mon, 23 Feb 2004 09:48:23 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:fde6d1a8-ce8d-47a7-b3f2-7451b1f7a14e</guid><dc:creator>Matthew Manthey</dc:creator><description>&lt;p&gt;I was wondering how to employ error parsing with Keil.  I am using Keil C167 Professional Development Kit.  Compiler uVision2 V2.38.  Compiler V4.27, Assembler V4.26 Linker 4.28.  I am using Windows XP Professional.  I wish to have Codewright 7.5 as an editor with Keil error parser.  How do I set this up?  What is the name of the Keil error parser for my version of Keil?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Codewright Support</title><link>https://community.arm.com/thread/39167?ContentTypeID=1</link><pubDate>Sat, 21 Sep 2002 03:49:21 GMT</pubDate><guid isPermaLink="false">dd9e70c8-6d3c-4c71-b136-2456382a7b5c:5083950d-64aa-4db1-a466-c9aab6e5096b</guid><dc:creator>J&amp;#252;rgen Veith</dc:creator><description>&lt;p&gt;here is the solution I found:&lt;br /&gt;
&lt;br /&gt;
^\*\*\* +(ERROR|WARNING) #+([0-9A-F]*) IN +([0-9]*) \x28+(.*), LINE&lt;br /&gt;
+([0-9]*)\x29: +(.*)\xd$&lt;br /&gt;
&lt;br /&gt;
- First characters in Error lines start with 3 stars (***).&lt;br /&gt;
(The expression \*{3} should also work but regex seems also buggy?)&lt;br /&gt;
- after that followed by a blank and either the&lt;br /&gt;
- Keywords error or warning in capital letters followed by&lt;br /&gt;
- a blank and the # with a hexadezimal error number&lt;br /&gt;
- followed by a blank and the Keyword &amp;quot;IN&amp;quot;&lt;br /&gt;
- followed by a dezimal number followed by a blank&lt;br /&gt;
- followed by a opening bracket&lt;br /&gt;
- followed by the filename what consists of any characters&lt;br /&gt;
- followed by a comma separator and a blank&lt;br /&gt;
- followed by the Keyword &amp;quot;LINE&amp;quot; and a blank&lt;br /&gt;
- followed by the line numer in dezimal format&lt;br /&gt;
- followed by a closing bracket, a colon an a blank&lt;br /&gt;
- followed by a error message string what constists of any characters&lt;br /&gt;
- followed by a formfeed at the end of the line (\f should also work)&lt;br /&gt;
&lt;br /&gt;
Filename is position 4&lt;br /&gt;
Linenumber is position 5 and&lt;br /&gt;
Error Message is positon 6&lt;br /&gt;
&lt;br /&gt;
Another (more easy feasable) way is to use the similar syntax of _FRANKASM51_494 what can be found in err32.dll&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>