lr-wpan: Fix association response before data request ack issue
This merge fixes the reaction of the MAC to association situations in which the association response command is received before a Data Request command ACK (see association diagram). This situation can occur in saturated networks, and it is caused by delayed ACK.
As a result of this issue, the user can experience a double MLME-ASSOCIATE.confirm , one with status SUCCESS and one with status NO DATA.
The source of this problem is a design flaw in the original standard (i.e. Assoc responses are sent immediately after transmitting a Data request acknowledgment). This flaw is later addressed by the standard by changing the association to Fast association found in later versions of the standard (2015 going forward). Fast association removes this terrible flaw. However, the issue persists in the most common versions of the standard 2003~2011 which use this default association.
This MR proposes this small fix to overcome this issue.