Content-Security-Policy: default-src 'none'
Content-Type: text/plain; charset=UTF-8
Content-Length: 3283
Content-Disposition: inline; filename="display.h"
Last-Modified: Thu, 14 May 2026 11:10:44 GMT
Expires: Sun, 11 May 2036 11:10:44 GMT
ETag: "bf9915fcd4c451089a3dacb93bea52c37669e4db"

/* $Id: display.h,v 1.13 2001/02/14 07:40:16 reinelt Exp $
 *
 * framework for device drivers
 *
 * Copyright 1999, 2000 by Michael Reinelt (reinelt@eunet.at)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *
 * $Log: display.h,v $
 * Revision 1.13  2001/02/14 07:40:16  reinelt
 *
 * first (incomplete) GPO implementation
 *
 * Revision 1.12  2001/02/13 09:00:13  reinelt
 *
 * prepared framework for GPO's (general purpose outputs)
 *
 * Revision 1.11  2000/08/09 09:50:29  reinelt
 *
 * opened 0.98 development
 * removed driver-specific signal-handlers
 * added 'quit'-function to driver structure
 * added global signal-handler
 *
 * Revision 1.10  2000/03/26 18:46:28  reinelt
 *
 * bug in pixmap.c that leaded to empty bars fixed
 * name conflicts with X11 resolved
 *
 * Revision 1.9  2000/03/25 05:50:43  reinelt
 *
 * memory leak in Raster_flush closed
 * driver family logic changed
 *
 * Revision 1.8  2000/03/22 15:36:21  reinelt
 *
 * added '-l' switch (list drivers)
 * generic pixmap driver added
 * X11 Framework done
 *
 * Revision 1.7  2000/03/17 09:21:42  reinelt
 *
 * various memory statistics added
 *
 * Revision 1.6  2000/03/13 15:58:24  reinelt
 *
 * release 0.9
 * moved row parsing to parser.c
 * all basic work finished
 *
 * Revision 1.5  2000/03/10 17:36:02  reinelt
 *
 * first unstable but running release
 *
 * Revision 1.4  2000/03/10 10:49:53  reinelt
 *
 * MatrixOrbital driver finished
 *
 * Revision 1.3  2000/03/06 06:04:06  reinelt
 *
 * minor cleanups
 *
 * Revision 1.2  2000/01/16 16:58:50  reinelt
 * *** empty log message ***
 *
 */

#ifndef _DISPLAY_H_
#define _DISPLAY_H_

#define BAR_L   (1<<0)
#define BAR_R   (1<<1)
#define BAR_U   (1<<2)
#define BAR_D   (1<<3)
#define BAR_H2  (1<<4)
#define BAR_V2  (1<<5)
#define BAR_LOG (1<<6)

#define BAR_H (BAR_L | BAR_R)
#define BAR_V (BAR_U | BAR_D)
#define BAR_HV (BAR_H | BAR_V)

typedef struct LCD {
  char *name;
  int rows;
  int cols;
  int xres;
  int yres;
  int bars;
  int gpos;
  int (*init) (struct LCD *Self);
  int (*clear) (void);
  int (*put) (int x, int y, char *text);
  int (*bar) (int type, int x, int y, int max, int len1, int len2);
  int (*gpo) (int num, int val);
  int (*flush) (void);
  int (*quit) (void);
} LCD;

typedef struct {
  char *name;
  LCD *Model;
} FAMILY;

int lcd_list (void);
int lcd_init (char *driver);
int lcd_query (int *rows, int *cols, int *xres, int *yres, int *bars, int *gpos);
int lcd_clear (void);
int lcd_put (int row, int col, char *text);
int lcd_bar (int type, int row, int col, int max, int len1, int len2);
int lcd_gpo (int num, int val);
int lcd_flush (void);
int lcd_quit (void);

#endif
'>24</a>
<a id='n25' href='#n25'>25</a>
<a id='n26' href='#n26'>26</a>
<a id='n27' href='#n27'>27</a>
<a id='n28' href='#n28'>28</a>
<a id='n29' href='#n29'>29</a>
<a id='n30' href='#n30'>30</a>
<a id='n31' href='#n31'>31</a>
<a id='n32' href='#n32'>32</a>
<a id='n33' href='#n33'>33</a>
<a id='n34' href='#n34'>34</a>
<a id='n35' href='#n35'>35</a>
<a id='n36' href='#n36'>36</a>
<a id='n37' href='#n37'>37</a>
<a id='n38' href='#n38'>38</a>
<a id='n39' href='#n39'>39</a>
<a id='n40' href='#n40'>40</a>
<a id='n41' href='#n41'>41</a>
<a id='n42' href='#n42'>42</a>
<a id='n43' href='#n43'>43</a>
<a id='n44' href='#n44'>44</a>
<a id='n45' href='#n45'>45</a>
<a id='n46' href='#n46'>46</a>
<a id='n47' href='#n47'>47</a>
<a id='n48' href='#n48'>48</a>
<a id='n49' href='#n49'>49</a>
<a id='n50' href='#n50'>50</a>
<a id='n51' href='#n51'>51</a>
<a id='n52' href='#n52'>52</a>
<a id='n53' href='#n53'>53</a>
<a id='n54' href='#n54'>54</a>
<a id='n55' href='#n55'>55</a>
<a id='n56' href='#n56'>56</a>
<a id='n57' href='#n57'>57</a>
<a id='n58' href='#n58'>58</a>
<a id='n59' href='#n59'>59</a>
<a id='n60' href='#n60'>60</a>
<a id='n61' href='#n61'>61</a>
<a id='n62' href='#n62'>62</a>
<a id='n63' href='#n63'>63</a>
<a id='n64' href='#n64'>64</a>
<a id='n65' href='#n65'>65</a>
<a id='n66' href='#n66'>66</a>
<a id='n67' href='#n67'>67</a>
<a id='n68' href='#n68'>68</a>
<a id='n69' href='#n69'>69</a>
<a id='n70' href='#n70'>70</a>
<a id='n71' href='#n71'>71</a>
<a id='n72' href='#n72'>72</a>
<a id='n73' href='#n73'>73</a>
<a id='n74' href='#n74'>74</a>
<a id='n75' href='#n75'>75</a>
<a id='n76' href='#n76'>76</a>
<a id='n77' href='#n77'>77</a>
<a id='n78' href='#n78'>78</a>
<a id='n79' href='#n79'>79</a>
<a id='n80' href='#n80'>80</a>
<a id='n81' href='#n81'>81</a>
<a id='n82' href='#n82'>82</a>
<a id='n83' href='#n83'>83</a>
<a id='n84' href='#n84'>84</a>
<a id='n85' href='#n85'>85</a>
<a id='n86' href='#n86'>86</a>
<a id='n87' href='#n87'>87</a>
<a id='n88' href='#n88'>88</a>
<a id='n89' href='#n89'>89</a>
<a id='n90' href='#n90'>90</a>
<a id='n91' href='#n91'>91</a>
<a id='n92' href='#n92'>92</a>
<a id='n93' href='#n93'>93</a>
<a id='n94' href='#n94'>94</a>
<a id='n95' href='#n95'>95</a>
<a id='n96' href='#n96'>96</a>
<a id='n97' href='#n97'>97</a>
<a id='n98' href='#n98'>98</a>
<a id='n99' href='#n99'>99</a>
<a id='n100' href='#n100'>100</a>
<a id='n101' href='#n101'>101</a>
<a id='n102' href='#n102'>102</a>
<a id='n103' href='#n103'>103</a>
<a id='n104' href='#n104'>104</a>
<a id='n105' href='#n105'>105</a>
<a id='n106' href='#n106'>106</a>
<a id='n107' href='#n107'>107</a>
<a id='n108' href='#n108'>108</a>
<a id='n109' href='#n109'>109</a>
<a id='n110' href='#n110'>110</a>
<a id='n111' href='#n111'>111</a>
<a id='n112' href='#n112'>112</a>
<a id='n113' href='#n113'>113</a>
<a id='n114' href='#n114'>114</a>
<a id='n115' href='#n115'>115</a>
<a id='n116' href='#n116'>116</a>
<a id='n117' href='#n117'>117</a>
<a id='n118' href='#n118'>118</a>
<a id='n119' href='#n119'>119</a>
<a id='n120' href='#n120'>120</a>
<a id='n121' href='#n121'>121</a>
<a id='n122' href='#n122'>122</a>
<a id='n123' href='#n123'>123</a>
<a id='n124' href='#n124'>124</a>
<a id='n125' href='#n125'>125</a>
<a id='n126' href='#n126'>126</a>
<a id='n127' href='#n127'>127</a>
<a id='n128' href='#n128'>128</a>
<a id='n129' href='#n129'>129</a>
<a id='n130' href='#n130'>130</a>
<a id='n131' href='#n131'>131</a>
<a id='n132' href='#n132'>132</a>
<a id='n133' href='#n133'>133</a>
<a id='n134' href='#n134'>134</a>
<a id='n135' href='#n135'>135</a>
<a id='n136' href='#n136'>136</a>
<a id='n137' href='#n137'>137</a>
<a id='n138' href='#n138'>138</a>
<a id='n139' href='#n139'>139</a>
<a id='n140' href='#n140'>140</a>
<a id='n141' href='#n141'>141</a>
<a id='n142' href='#n142'>142</a>
<a id='n143' href='#n143'>143</a>
<a id='n144' href='#n144'>144</a>
<a id='n145' href='#n145'>145</a>
<a id='n146' href='#n146'>146</a>
<a id='n147' href='#n147'>147</a>
<a id='n148' href='#n148'>148</a>
<a id='n149' href='#n149'>149</a>
<a id='n150' href='#n150'>150</a>
<a id='n151' href='#n151'>151</a>
<a id='n152' href='#n152'>152</a>
<a id='n153' href='#n153'>153</a>
<a id='n154' href='#n154'>154</a>
<a id='n155' href='#n155'>155</a>
<a id='n156' href='#n156'>156</a>
<a id='n157' href='#n157'>157</a>
<a id='n158' href='#n158'>158</a>
<a id='n159' href='#n159'>159</a>
<a id='n160' href='#n160'>160</a>
<a id='n161' href='#n161'>161</a>
<a id='n162' href='#n162'>162</a>
<a id='n163' href='#n163'>163</a>
<a id='n164' href='#n164'>164</a>
<a id='n165' href='#n165'>165</a>
<a id='n166' href='#n166'>166</a>
<a id='n167' href='#n167'>167</a>
<a id='n168' href='#n168'>168</a>
<a id='n169' href='#n169'>169</a>
<a id='n170' href='#n170'>170</a>
<a id='n171' href='#n171'>171</a>
<a id='n172' href='#n172'>172</a>
<a id='n173' href='#n173'>173</a>
<a id='n174' href='#n174'>174</a>
<a id='n175' href='#n175'>175</a>
<a id='n176' href='#n176'>176</a>
<a id='n177' href='#n177'>177</a>
<a id='n178' href='#n178'>178</a>
<a id='n179' href='#n179'>179</a>
<a id='n180' href='#n180'>180</a>
<a id='n181' href='#n181'>181</a>
<a id='n182' href='#n182'>182</a>
<a id='n183' href='#n183'>183</a>
<a id='n184' href='#n184'>184</a>
<a id='n185' href='#n185'>185</a>
<a id='n186' href='#n186'>186</a>
<a id='n187' href='#n187'>187</a>
<a id='n188' href='#n188'>188</a>
<a id='n189' href='#n189'>189</a>
<a id='n190' href='#n190'>190</a>
<a id='n191' href='#n191'>191</a>
<a id='n192' href='#n192'>192</a>
<a id='n193' href='#n193'>193</a>
<a id='n194' href='#n194'>194</a>
<a id='n195' href='#n195'>195</a>
<a id='n196' href='#n196'>196</a>
<a id='n197' href='#n197'>197</a>
<a id='n198' href='#n198'>198</a>
<a id='n199' href='#n199'>199</a>
<a id='n200' href='#n200'>200</a>
<a id='n201' href='#n201'>201</a>
<a id='n202' href='#n202'>202</a>
<a id='n203' href='#n203'>203</a>
<a id='n204' href='#n204'>204</a>
<a id='n205' href='#n205'>205</a>
<a id='n206' href='#n206'>206</a>
<a id='n207' href='#n207'>207</a>
<a id='n208' href='#n208'>208</a>
<a id='n209' href='#n209'>209</a>
<a id='n210' href='#n210'>210</a>
<a id='n211' href='#n211'>211</a>
<a id='n212' href='#n212'>212</a>
<a id='n213' href='#n213'>213</a>
<a id='n214' href='#n214'>214</a>
<a id='n215' href='#n215'>215</a>
<a id='n216' href='#n216'>216</a>
<a id='n217' href='#n217'>217</a>
<a id='n218' href='#n218'>218</a>
<a id='n219' href='#n219'>219</a>
<a id='n220' href='#n220'>220</a>
<a id='n221' href='#n221'>221</a>
<a id='n222' href='#n222'>222</a>
<a id='n223' href='#n223'>223</a>
<a id='n224' href='#n224'>224</a>
<a id='n225' href='#n225'>225</a>
<a id='n226' href='#n226'>226</a>
<a id='n227' href='#n227'>227</a>
<a id='n228' href='#n228'>228</a>
<a id='n229' href='#n229'>229</a>
<a id='n230' href='#n230'>230</a>
<a id='n231' href='#n231'>231</a>
<a id='n232' href='#n232'>232</a>
<a id='n233' href='#n233'>233</a>
<a id='n234' href='#n234'>234</a>
<a id='n235' href='#n235'>235</a>
<a id='n236' href='#n236'>236</a>
<a id='n237' href='#n237'>237</a>
<a id='n238' href='#n238'>238</a>
<a id='n239' href='#n239'>239</a>
<a id='n240' href='#n240'>240</a>
<a id='n241' href='#n241'>241</a>
<a id='n242' href='#n242'>242</a>
<a id='n243' href='#n243'>243</a>
<a id='n244' href='#n244'>244</a>
<a id='n245' href='#n245'>245</a>
<a id='n246' href='#n246'>246</a>
<a id='n247' href='#n247'>247</a>
<a id='n248' href='#n248'>248</a>
<a id='n249' href='#n249'>249</a>
<a id='n250' href='#n250'>250</a>
<a id='n251' href='#n251'>251</a>
<a id='n252' href='#n252'>252</a>
<a id='n253' href='#n253'>253</a>
<a id='n254' href='#n254'>254</a>
<a id='n255' href='#n255'>255</a>
<a id='n256' href='#n256'>256</a>
<a id='n257' href='#n257'>257</a>
<a id='n258' href='#n258'>258</a>
<a id='n259' href='#n259'>259</a>
<a id='n260' href='#n260'>260</a>
<a id='n261' href='#n261'>261</a>
<a id='n262' href='#n262'>262</a>
<a id='n263' href='#n263'>263</a>
<a id='n264' href='#n264'>264</a>
<a id='n265' href='#n265'>265</a>
<a id='n266' href='#n266'>266</a>
<a id='n267' href='#n267'>267</a>
<a id='n268' href='#n268'>268</a>
<a id='n269' href='#n269'>269</a>
<a id='n270' href='#n270'>270</a>
<a id='n271' href='#n271'>271</a>
<a id='n272' href='#n272'>272</a>
<a id='n273' href='#n273'>273</a>
<a id='n274' href='#n274'>274</a>
<a id='n275' href='#n275'>275</a>
<a id='n276' href='#n276'>276</a>
<a id='n277' href='#n277'>277</a>
<a id='n278' href='#n278'>278</a>
<a id='n279' href='#n279'>279</a>
<a id='n280' href='#n280'>280</a>
<a id='n281' href='#n281'>281</a>
<a id='n282' href='#n282'>282</a>
<a id='n283' href='#n283'>283</a>
<a id='n284' href='#n284'>284</a>
<a id='n285' href='#n285'>285</a>
<a id='n286' href='#n286'>286</a>
<a id='n287' href='#n287'>287</a>
<a id='n288' href='#n288'>288</a>
<a id='n289' href='#n289'>289</a>
<a id='n290' href='#n290'>290</a>
<a id='n291' href='#n291'>291</a>
<a id='n292' href='#n292'>292</a>
<a id='n293' href='#n293'>293</a>
<a id='n294' href='#n294'>294</a>
<a id='n295' href='#n295'>295</a>
<a id='n296' href='#n296'>296</a>
<a id='n297' href='#n297'>297</a>
<a id='n298' href='#n298'>298</a>
<a id='n299' href='#n299'>299</a>
<a id='n300' href='#n300'>300</a>
<a id='n301' href='#n301'>301</a>
<a id='n302' href='#n302'>302</a>
<a id='n303' href='#n303'>303</a>
<a id='n304' href='#n304'>304</a>
<a id='n305' href='#n305'>305</a>
<a id='n306' href='#n306'>306</a>
<a id='n307' href='#n307'>307</a>
<a id='n308' href='#n308'>308</a>
<a id='n309' href='#n309'>309</a>
<a id='n310' href='#n310'>310</a>
<a id='n311' href='#n311'>311</a>
<a id='n312' href='#n312'>312</a>
<a id='n313' href='#n313'>313</a>
<a id='n314' href='#n314'>314</a>
<a id='n315' href='#n315'>315</a>
<a id='n316' href='#n316'>316</a>
<a id='n317' href='#n317'>317</a>
<a id='n318' href='#n318'>318</a>
<a id='n319' href='#n319'>319</a>
<a id='n320' href='#n320'>320</a>
<a id='n321' href='#n321'>321</a>
<a id='n322' href='#n322'>322</a>
<a id='n323' href='#n323'>323</a>
<a id='n324' href='#n324'>324</a>
<a id='n325' href='#n325'>325</a>
<a id='n326' href='#n326'>326</a>
<a id='n327' href='#n327'>327</a>
<a id='n328' href='#n328'>328</a>
<a id='n329' href='#n329'>329</a>
<a id='n330' href='#n330'>330</a>
<a id='n331' href='#n331'>331</a>
<a id='n332' href='#n332'>332</a>
<a id='n333' href='#n333'>333</a>
<a id='n334' href='#n334'>334</a>
</pre></td>
<td class='lines'><pre><code><style>pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */</style><div class="highlight"><pre><span></span>NEWS
====

--------------------
0.7.6 (2014-01-18)
--------------------
  * Scan window:
    - complete redesign based on pthreads to fix terminal bug, as a result of better
      design the scan window now also can be suspended (details of fix are below),
    - add message for &#39;too much data&#39; (E2BIG) error case,
    - use same formatting (3 digits) for 2/5 GHz,
    - support for changing sort order via keyboard shortcuts (see manpage, several
      ascending/descending sort orders are now available directly on the screen),
    - currently active sort order is now displayed on status line at the bottom,
    - stabilized by-channel sort to always use the same order for identical channels,
    - added &#39;sort by Essid&#39; to selection of sort menus;
  * Info window:
    - add percentage for easier reading of link quality,
    - deprecate use of locale settings for &#39;discard&#39; information (fixes display);
  * Configuration screen:
    - add support for Page Up/Down, Home, and End buttons to ease navigation,
    - added more information to &#39;-v&#39; version information (ncurses/WE versions);
  * Bug fixes:
    - fix bug in ranking top/bottom 3 channels in scan window,
    - complete redesign of scan process based on pthreads to fix bug that became
       visible on ncurses &gt;= 5.9.20130504 (slackware 14.1 and debian jessie), caused
       by child/parent both updating the same screen (bug had been hidden by the
       internal buffering of ncurses which was then removed), reported by Nick Warne.

--------------------
0.7.5 (2012-05-04)
--------------------
  * Scan window:
    - added a summary status line to present summary statistics.
  * Bug fixes:
    - added additional keyboard shortcuts for each screen to cope with
      terminals which remap the function keys, fixing Ubuntu bug #725036;
    - the shortcut is the first character of the screen&#39;s name (F1: i,
      F2: l, F3: s, F7: p, F8: h, F9: a, F10: q), see manpage for details;
    - added work-around for terminals with broken terminfo entries (e.g.
      old aterm), now supporting the vt100 PF1..4 sequences in addition.

--------------------
0.7.4 (2012-02-03)
--------------------
  * General:
    - deprecate reliance on /proc/net/wireless, since tests on Tiny Core Linux
      showed that it no longer reliably lists available wireless interfaces,
    - instead use safe route of using /proc/net/dev, probing each interface
      in turn for wireless extensions;
  * Scan window:
    - configurable scan sort order (at runtime and via configuration file),
    - can sort by (combinations of) channel, signal strength, and openness,
    - visually distinguish 2.4GHz and 5.8GHz channels;
  * Fixes:
    - wavemonrc.5 manpage fixes thanks to Jonathan McCrohan,
    - support common options (-v/-h) even if no interfaces found,
    - but do not start operation unless at least 1 wireless interface exists.

--------------------
0.7.3 (2011-12-22)
--------------------
  * Scan window:
    - items are now sorted first by channel (ascending) then by signal
      strength (descending), as before
    - using one line per entry doubled the capacity of the scan window
    - refresh interval is made configurable (via &#39;Statistics updates&#39;)
  * Configuration screen:
    - memorizes the last-changed item to ease longer configuration tasks
  * Fixes:
    - better (cleaner) termination on error
    - fixed clear-line refresh in info screen
    - fixed bug in generator for random link quality (causing negative values)
    - reverted using separate process group (problems when running under sudo)
    - miscellaneous code reordering to decouple functional units

--------------------
0.7.2 (2011-02-25)
--------------------
  * General:
    - support SIGWINCH for resizing (thanks to Koniu)
    - reorganized screen handling to support resizing
    - make geometry checking optional and off by default
    - allow suspending wavemon (CTRL-Z) on most screens
  * Info screen:
    - suppress obvious broadcast address (deriving from prefix)
    - special case for &quot;no interface address assigned&quot;
    - display interface MTU if different from the default value
    - show interface flags and TX queue length if enough space
  * Scan window:
    - set up enable interface if it is down (otherwise no scan)
    - drop support for wireless extensions &lt; 18 (minimum requirement)
    - clean up child scan process on error (avoid garbled screen)
  * Configuration screen:
    - support &#39;Cisco-style&#39; MAC addresses (dots rather than colons)
  * Fixes:
    - do not report zero bitrates (Info screen, 802.11n interface)
    - remove unused timer in Scan window (data sampling is now
      confined to info/histogram screens)
    - fixed various compiler warnings
    - fixed several problems in and improved the random generator
    - use sigaction() rather than signal()
    - miscellaneous reorganization of the configuration menu code

--------------------
0.7.1 (2010-12-24)
--------------------
  * Scan window:
    - improved and more consistent formatting of entries
    - better responsiveness by running scan operation as child process
  * Security capabilities:
    - display capabilities supported by the driver
    - display current and available key sizes
    - decode relevant IE information
  * check and warn about insufficient permissions (CAP_NET_ADMIN) that
    are required for several wireless operations (e.g. scanning)
  * Bug Fixes:
    - avoid triggering assertion on large screens
    - require minimum version (18) of the wireless extensions
    - better clearing of info screen
    - various cleanups
  * overhaul of manpages

--------------------
0.7.0 (2010-10-18)
--------------------
  * NEW Scan Window: this replaces the old access point screen. It displays
    a sorted list (in descending order of signal quality) of access points
    and other wireless clients within range, periodically refreshed at a
    configurable rate.
  * Access Point screen: finally deprecated this - the SIOCGIWAPLIST
    ioctl itself is deprecated and works only on some older kernels.
  * Info Window: clear screen to erase stale data.
  * Bug Fixes: fixed a compiler warning in string-tolower operation.

--------------------
0.6.11 (2010-06-14)
--------------------
 * Info screen:
   - fixed a bug in the freq/channel display: some drivers, such as ipw2100,
     only return the channel number, requiring to look up the frequency;
   - added a warning to indicate the absence of data from the interface.
 * Histogram screen:
   Tag the grid lines with the corresponding dBm levels:
   - no levels are shown if there is no valid interface data (screen empty);
   - level tags are restricted to the signal level graph only:
     o if both signal and noise level data are valid, there are three graphs
       (signal level, noise level, SNR), which would cause ambiguity,
     o many cards (e.g. ath5k, rt73usb, iwl3945) do not supply noise data,
       so that the histogram screen will then only contain the level graph;
   - since the scale is adjustable, while the grid lines are fixed, the tags
     are dynamically recomputed based on the y position and current scale;
   - the min/max bounds of the scale are also shown.
   Thanks to Sean Muir for this suggestion.
 * Updated manpage regarding access point screen; as soon there is time, the
   outdated and restricted SIOCGIWAPLIST ioctl should be replaced by a scan.

--------------------
0.6.10 (2009-10-25)
--------------------
 * Bug Fixes:
   - fixed installation bug which caused manpages to be installed in /man;
   - fixed mode of installation to support sandbox-builds on Gentoo (Lovelace);
   - improved (automated) linking process, now possible to pass LDFLAGS (Boeck);
   - bail out when no statistics are available, instead of flagging an error.

--------------------
0.6.7 (2009-07-09)
--------------------
 * Screen geometry:
   Reduced the screen size again, to 24x80, since this is a widely used default
   size (thanks to Nelson A. de Oliveira). Removed the &quot;wireless extensions&quot;
   information from the information screen, to reduce the minimum required
   number of lines from 25 to 24. The wireless extension information however
   remains still available, via the &quot;wavemon -d&quot; dump option.

 * Histogram screen improvements:
   - a new revised approach to fix several old bugs and limitations,
   - new code better observes the boundaries and the configured ranges,
   - better visibility, signal/noise are now plotted in bold.

 * Better separation of error messages, into:
   - informational warning messages (outside ncurses mode),
   - fatal errors unrelated to system calls,
   - fatal errors following a system call (with interpretation of errno(3)).

 * Bug Fixes:
   - fixed a bug in the histogram initialisation (producing ghost values);
   - fixed a bug which caused non-ASCII encryption key strings to be garbled;
   - key string length is now checked to avoid spilling over the right border
     into the next line; curtailing long keys in a pretty-printing manner.

--------------------
0.6.6 (2009-06-01)
--------------------
 * Access point screen:
   Overly long access point lists (more than 6 peer access points) are now
   truncated, so as not to overwrite screen borders.

 * Histogram screen:
   The bottom &#39;key&#39; window used to replicate the configured range values which
   are available also via the configuration screen. This replication has now
   been superseded by a dynamic range-tracking feature:
   - for each of the three ranges (signal level, noise level, SNR), it shows
     the min..max values on the screen or &#39;unknown&#39; if the driver reports
     values as unknown (e.g. noise levels on iwl3945),
   - these values correspond to the current histogram and are updated
     dynamically, thus complementing the visual display.

 * Bug Fixes:
   - histogram screen no longer tracks values that the driver reports as invalid;
   - fixed off-by-one bug which caused the bottom access-point border to be erased;
   - miscellaneous code clean-ups:
     o unified description of window sizes via header file constants,
     o updated and extended source code documentation.

--------------------
0.6.5 (2009-05-08)
--------------------
 * Several improvements in displaying driver parameters:
   - ESSID: support for indexed ESS identifiers,
   - nickname: no longer present empty/void nicknames,
   - nwid: added support for displaying it (even if is pre-802.11),
   - IP-address: collapse netmask information into shorter CIDR prefix length,
   - mode: preliminary support to display 802.11s mesh mode (2.6.26),
   - retry: new code to display information about MAC-layer retransmissions,
   - frequency: suppress trailing zeroes, unified conversion,
   - channel: now also prints the number of the current channel,
   - encryption keys: added pretty-printing, suppress always-present &#39;0&#39; index,
   - sensitivity: only print if card supports it, now also supports dBm values,
   - tx-power: better support for the various formats (relative | mW | dBm),
   - power management: improved output formatting.

 * Mode-sensitive display:
   - when operating in &#39;monitor&#39; or &#39;access point&#39; mode, the &#39;access point&#39;
     field is not necessary or redundant (in AP mode, it is the same as the
     mac address shown in the network window), hence omitted;
   - when operating in &#39;master&#39;, &#39;repeater&#39; or &#39;secondary&#39; mode, the bitrate
     information is also not needed and hence suppressed;
   - wavemon is now able to distinguish auto-configured values (using upper-case
     labels) from manually configured values (using standard lower-case labels).

 * Encryption keys (only with CAP_NET_ADMIN privileges): display of all-ASCII
   keys is now in cleartext, otherwise the hex format is now pretty-printed.

 * Screen Layout: redundancies (repeated interface name) have been removed, the
   whole screen fits again into a 25x80 console window. In addition, wavemon
   tests if the screen size and bails out if the screen is too small for a
   readable layout.

 * Better display of MAC addresses:
   - detects the &quot;not associated&quot; state of a managed client and then
   - displays &#39;non-associated&#39; state instead of showing zero MAC address,
   - sanity checks on access point addresses (broadcast address is invalid),
   - Ethernet addresses are automatically translated to symbolic names if a
     mapping  exists for the MAC address in /etc/ethers.

 * The Access Point List is now sorted in descending order of signal strength.

 * The LC_NUMERIC locale is honoured: when displaying large numbers (e.g. packet
   counters, numbers are now grouped according to the locale.

 * Bug Fixes:
   - fixed several conditions which caused the window borders to be punctured;
   - fixed a bug in the display of MAC addresses on the access point screen;
   - RTS/CTS threshold suffered from the same problem - also fixed,
   - fixed broken display of frag[mentation] threshold;
   - fixed a bug which caused empty nicknames (&quot;&quot;) to be displayed;
   - fixed several smaller bugs, thanks to sparse.

--------------------
0.6 (2009-04-01)
--------------------
 * Update to the latest wireless extension API (number 22),
   As a consequence of updating the wireless extensions, more
   information is now displayed, including
   - excessive TX MAC reassembly retries,
   - missed beacon count
   - display of wireless extension version used by the driver
   - the driver&#39;s internal WE version

 * wavemon now uses ioctl to obtain IW statistics and falls back
   to /proc/net/wireless only as a last resort. (It is planned
   to add netlink support in a later release.)

 * Linear scales (-l option) no longer supported, since levels
   are always reported both in log (dBm) and lin (mW).
   (NB: in case of using an old version of ~/.wavemonrc, it is
        necessary to remove the line containing &#39;linear_scale&#39;,
	which is the option that has been removed.)

 * Added sanity checks to the display of level information:
   - noise level is only displayed if valid signal levels exist;
   - some cards set a magic number to mean an invalid noise level - a
     constant has been added to catch such cases;
   - if the noise level (and hence the SNR value) is undefined, spread
     out the  display of quality/signal levels over the info window.

 * Added gui option for smoothing level meters (better readability).

 * Much better and more accurate information in the Access Point List.

 * Bug Fixes:
   - it is finally possible to use the Access Point List as start screen,
   - updated and fixed display of operation modes,
   - selecting the wireless interface now works with multiple interfaces,
   - header inclusion bug fix for Puppy Linux (thanks to Tom Gordon).

 * Updated all components of the autoconf build system:
   - DESTDIR is now supported for building packages
     (thanks to Christoph J. Thompson),
   - now using autoconf to set package version and build date.

 * Reorganised source tree organisation:
   - merged many small (one-line) header files into one,
   - created a &#39;contrib&#39; directory for contributed scripts,
   - added &#39;config&#39; directory for autoconf auxiliary scripts
   - reinstated standard GNU autoconf listing of files

--------------------
0.5 (2009-01-17)
--------------------
Update on the build process, new maintainer, git tree
to keep the changes. Fixes in this release include
 * minor bug fixes
 * build fixups and fixes for the build process
 * a stub handler for SIGWINCH (still not fully supported)
 * adding units to the levels (lin/log)
 * tidied up code

--------------------
0.4.0b (2002-12-21)
--------------------
Last release by the original author, Jan Morgenstern.
</pre></div>
</code></pre></td></tr></table>
</div> <!-- class=content -->
<div class='footer'>generated by <a href='https://git.zx2c4.com/cgit/about/'>cgit v1.2.3</a> (<a href='https://git-scm.com/'>git 2.39.1</a>) at 2026-05-14 11:10:45 +0000</div>
</div> <!-- id=cgit -->
</body>
</html>
