Changes between Version 169 and Version 170 of 802.11/Changelog


Ignore:
Timestamp:
Feb 21, 2017, 4:47:18 PM (7 years ago)
Author:
chunter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/Changelog

    v169 v170  
    44
    55== 1.6 Releases  ==
    6 '''Download Latest: [https://warpproject.org/dl/refdes/802.11/Mango_802.11_RefDes_v1.6.1.zip Mango_802.11_RefDes_v1.6.1.zip]'''
    7 
    8 Release Details:
    9 ||= Hardware =||= Release =||= Date Posted =||= SVN Rev. =||= ISE Ver. =||= Arch =||
     6'''Download Latest: [https://warpproject.org/dl/refdes/802.11/Mango_802.11_RefDes_v1.6.2.zip Mango_802.11_RefDes_v1.6.2.zip]'''
     7
     8Release Details:
     9||= Hardware =||= Release =||= Date Posted =||= SVN Rev. =||= ISE Ver. =||= Arch =||
     10||  WARP v3  ||  [https://warpproject.org/dl/refdes/802.11/Mango_802.11_RefDes_v1.6.2.zip 1.6.2]  || 21-Feb-2017  ||   [browser:ReferenceDesigns/w3_802.11?rev=5883 5883]   ||  14.4  ||  Dual MB/AXI  ||
    1011||  WARP v3  ||  [https://warpproject.org/dl/refdes/802.11/Mango_802.11_RefDes_v1.6.1.zip 1.6.1]  || 15-Feb-2017  ||   [browser:ReferenceDesigns/w3_802.11?rev=5859 5859]   ||  14.4  ||  Dual MB/AXI  ||
    1112||  WARP v3  ||  [https://warpproject.org/dl/refdes/802.11/Mango_802.11_RefDes_v1.6.0.zip 1.6.0]  || 13-Jan-2017  ||   [browser:ReferenceDesigns/w3_802.11?rev=5743 5743]   ||  14.4  ||  Dual MB/AXI  ||
     13
     14----
     15'''Changes in v1.6.2:'''
     16
     17'''MAC Software Changes:'''
     18 * Fixed bug in handling of Tx queue polling that could result in corrupted Aux. BRAM data and bogus transmissions.
     19 * Fixed bug in the MAC Low Framework that left Rx packet buffers unlocked. This bug had no adverse effects but would have produced errors if the automatically generated {{{XPAR_CPU_ID}}} became nonzero.
     20 * Fixed calls to {{{sizeof()}}} that passed a pointer rather than a type or array.
     21 * AP now checks to make sure the underlying MAC supports DTIM multicast buffering before assuming that it does. Previously, using NOMAC to transmit multicast frames from the AP would not work until DTIM multicast buffering was explicitly disabled.
     22 * Added new optional compiler warnings to each project and fixed the warnings that result from the inclusion of the new flags. From [https://gcc.gnu.org/onlinedocs/gcc-4.6.2/gcc/Warning-Options.html#Warning-Options the gcc docs] we added:
     23  * -Wclobbered
     24  * -Wempty-body
     25  * -Wmissing-field-initializers
     26  * -Wmissing-parameter-type
     27  * -Wold-style-declaration
     28  * -Woverride-init
     29  * -Wsign-compare
     30  * -Wtype-limits
     31  * -Wuninitialized
     32  * -Wunused-but-set-parameter
     33  * -Wformat
     34  * -Wstrict-aliasing
     35  * -Wshadow
    1236
    1337----