-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lab 8_1_UART #192
base: main
Are you sure you want to change the base?
Lab 8_1_UART #192
Conversation
@@ -0,0 +1,5 @@ | |||
*.sv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Не понял, зачем игнорировать .sv файлы?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Я предполагаю такой сценарий работы:
- выполняется скрипт prepare - копируются файлы из каталога support/step1 в текущий каталог
- идёт работа с файлами
Что бы при обновлении через git pull изменённые файлы не мешали обновлению нужен локальный .gitignore с запретом *.sv
*.sv | ||
*.svh | ||
log.txt | ||
run |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Директории нужно игнорировать с / в конце
*.svh | ||
log.txt | ||
run | ||
uart.conf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это нужно встроить в глобальный .gitignore файл, зачем плодить много локальных?
@@ -6,6 +6,10 @@ script=$(basename "$0") | |||
source_script=${script/\.bash/.source_bash} | |||
dir_source_script=../scripts/steps/$source_script | |||
|
|||
echo $script |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это лишнее. Все redirect скрипты должны быть индентичными
dir_source_script=$(readlink -f $dir_source_script) | ||
. "$dir_source_script" & | ||
|
||
if [ "$OSTYPE" = "msys" ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Здесь должен быть redirect
@@ -0,0 +1,218 @@ | |||
`include "config.svh" | |||
|
|||
//`ifndef SIMULATION |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Если это тут не нужно, его нужно не комментировать, а удалить
No description provided.