Aws only files spell check (#593)

* Added spell check

* All words

* Add a missing word

* Fix header checks

* Fix header checks v1

* Fix header check v2

* Updated freertos link in header

* Fixed afr link in the header

* Fix last of header checks

* Update the spell check script to check amazon licensed files only

* Fixed paths and added comments

* Try with modified repo

* Add inplace substitute option to sed

* Use official repo as the spell checker source

* Add vendor file to the ignored list

Co-authored-by: root <root@ip-172-31-5-28.us-west-2.compute.internal>
This commit is contained in:
Aniruddha Kanhere 2021-05-13 16:07:56 -07:00 committed by GitHub
parent e117bdcd17
commit 1bc759d413
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
104 changed files with 3737 additions and 444 deletions

View file

@ -19,10 +19,9 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://www.FreeRTOS.org
* http://aws.amazon.com/freertos
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*
* 1 tab == 4 spaces!
*/
@ -57,7 +56,7 @@ xComPortHandle xSerialPortInitMinimal( unsigned long ulWantedBaud, unsigned port
| USART_RS485_OFF_gc /* RS485 Mode disabled */
| 1 << USART_RXCIE_bp; /* Receive Complete Interrupt Enable: enabled */
USART3.CTRLB = 1 << USART_RXEN_bp /* Reciever enable: enabled */
USART3.CTRLB = 1 << USART_RXEN_bp /* Receiver enable: enabled */
| USART_RXMODE_NORMAL_gc /* Normal mode */
| 1 << USART_TXEN_bp; /* Transmitter Enable: enabled */
}